Cells in this record.
A record can contain up to NUM_ADDRESS_FIELDS cells, one for each AddressFieldType.
This array can be manipulated directly or via the get() and set() methods.
Record entry stored in the database header.
The "main" phone number type for this record.
Phone number type mapping for this record.
Assign properties to this object from a JSON object.
Conceptually equivalent to Object.assign(), but recursively hydrates SObjects / SArrays / SerializableWrappers etc and invokes their assignJSON() to process JSON values. For example:
class A extends SObject {
@field(SUInt8) prop1: number;
}
class B extends SObject {
@field() a = new A();
}
const b1 = new B();
b1.assignJSON({a: {prop1: 300}});
Assign properties to this object from a map of Serializables.
Conceptually equivalent to Object.assign(), but automatically unwraps
wrapped properties. Fields defined with @field()
are directly assigned,
and fields defined with @field(wrapper)
are assigned by unwrapping the
corresponding SerializableWrapper. Unknown fields are considered an error.
Deserializes a buffer into this value.
Optional
opts: DeserializeOptionsNumber of bytes read.
Returns the cell value for a field type in this record, or undefined if not present.
Computes the serialized length of this value.
Optional
opts: SerializeOptionsSerializes this value into a buffer.
Optional
opts: SerializeOptionsSets the cell value for a field type.
If field type was already present on this record, the previous cell value is overwritten. Otherwise, a new cell is appended.
Map values of this object to Serializable.
Fields defined with @field()
are preserved as-is, and field defined with
@field(wrapper)
are wrapped in their respective wrapper types.
Static
fromStatic
withStatic
withJSON
An AddressDB record.