Carrier object for BlobEntity.
Constructors
NSBlobEntity()
Initializes a new instance of the NSBlobEntity class.
Methods
GetBlobId()
Returns: CRMScript.Global.Integer - Primary key.
Example:
GetBlobSize()
Returns: CRMScript.Global.Integer - The length, in bytes, of the binary data AS STORED after any encryption and/or zipping. Important to get right, since some databases will not tell us just based on the blob itself!
Example:
GetConceptualType()
Returns: CRMScript.Global.String - The type, for instance PHOTO, PERSONPHOTO, or whatever, that is descriptive of what kind of image or data this is.
Example:
GetCreatedBy()
Returns: CRMScript.NetServer.NSAssociate - The person that first created the document. The property is read-only.
Example:
GetCreatedDate()
Returns: CRMScript.Global.DateTime - Registered when.
Example:
GetDescription()
Returns: CRMScript.Global.String - A description that is entered by the user, and visible to the user.
Example:
Returns: CRMScript.Global.String - Extra information, spare field, can be used for anything that makes sense.
Should not refer to any particular context, that is something for the BinaryObjectLInk
Example:
GetIsEncrypted()
Returns: CRMScript.Global.Bool - Has the data been encrypted?
Example:
GetIsZipped()
Returns: CRMScript.Global.Bool - Has the data been zipped?
Example:
GetMimeType()
Returns: CRMScript.Global.String - Mime type, describing the technical type (image/jpeg) of the data.
Example:
GetOriginalSize()
Returns: CRMScript.Global.Integer - Original size of the binary data, before encryption and/or zipping.
This is what the ultimate client will get
Example:
GetUpdatedBy()
Returns: CRMScript.NetServer.NSAssociate - The person that last updated the appointment.
Example:
GetUpdatedDate()
Returns: CRMScript.Global.DateTime - Last updated when.
Example:
SetBlobId(Integer)
Returns: CRMScript.Global.Void
Example:
SetBlobSize(Integer)
Returns: CRMScript.Global.Void
Example:
SetConceptualType(String)
Returns: CRMScript.Global.Void
Example:
SetCreatedBy(NSAssociate)
Returns: CRMScript.Global.Void
Example:
SetCreatedDate(DateTime)
Returns: CRMScript.Global.Void
Example:
SetDescription(String)
Returns: CRMScript.Global.Void
Example:
Returns: CRMScript.Global.Void
Example:
SetIsEncrypted(Bool)
Returns: CRMScript.Global.Void
Example:
SetIsZipped(Bool)
Returns: CRMScript.Global.Void
Example:
SetMimeType(String)
Returns: CRMScript.Global.Void
Example:
SetOriginalSize(Integer)
Returns: CRMScript.Global.Void
Example:
SetUpdatedBy(NSAssociate)
Returns: CRMScript.Global.Void
Example:
SetUpdatedDate(DateTime)
Returns: CRMScript.Global.Void
Example: