Class NSShipmentMessageBlockEntity
Constructors
NSShipmentMessageBlockEntity()
Initializes a new instance of the NSShipmentMessageBlockEntity class.
Declaration
NSShipmentMessageBlockEntity Methods
GetAssociateId()
Declaration
Integer GetAssociateId() Examples
NSShipmentMessageBlockEntity thing;
Integer associateId = thing.GetAssociateId();
Returns
| Type | Description |
| Integer | The associate that owns this block. |
GetBlock()
Declaration
String GetBlock() Examples
NSShipmentMessageBlockEntity thing;
String block = thing.GetBlock();
Returns
| Type | Description |
| String | The block definition. Normally this will be a JSON structure. |
GetRegistered()
Declaration
DateTime GetRegistered() Examples
NSShipmentMessageBlockEntity thing;
DateTime registered = thing.GetRegistered();
Returns
| Type | Description |
| DateTime | Registered when. |
GetRegisteredAssociateId()
Declaration
Integer GetRegisteredAssociateId() Examples
NSShipmentMessageBlockEntity thing;
Integer registeredAssociateId = thing.GetRegisteredAssociateId();
Returns
| Type | Description |
| Integer | Registered by whom. |
GetShipmentMessageBlockId()
Declaration
Integer GetShipmentMessageBlockId() Examples
NSShipmentMessageBlockEntity thing;
Integer shipmentMessageBlockId = thing.GetShipmentMessageBlockId();
Returns
| Type | Description |
| Integer | Primary key. |
GetUpdated()
Declaration
DateTime GetUpdated() Examples
NSShipmentMessageBlockEntity thing;
DateTime updated = thing.GetUpdated();
Returns
| Type | Description |
| DateTime | Last updated when. |
GetUpdatedAssociateId()
Declaration
Integer GetUpdatedAssociateId() Examples
NSShipmentMessageBlockEntity thing;
Integer updatedAssociateId = thing.GetUpdatedAssociateId();
Returns
| Type | Description |
| Integer | Last updated by whom. |
GetUpdatedCount()
Declaration
Integer GetUpdatedCount() Examples
NSShipmentMessageBlockEntity thing;
Integer updatedCount = thing.GetUpdatedCount();
Returns
| Type | Description |
| Integer | Number of updates made to this record. |
SetAssociateId(Integer)
Declaration
Void SetAssociateId(Integer associateId) Examples
NSShipmentMessageBlockEntity thing;
Integer associateId;
thing.SetAssociateId(associateId);
Parameters
| Type | Name | Description |
| Integer | associateId | The associate that owns this block. |
Returns
| Type | Description |
| Void |
SetBlock(String)
Declaration
Void SetBlock(String block) Examples
NSShipmentMessageBlockEntity thing;
String block;
thing.SetBlock(block);
Parameters
| Type | Name | Description |
| String | block | The block definition. Normally this will be a JSON structure. |
Returns
| Type | Description |
| Void |
SetRegistered(DateTime)
Declaration
Void SetRegistered(DateTime registered) Examples
NSShipmentMessageBlockEntity thing;
DateTime registered;
thing.SetRegistered(registered);
Parameters
| Type | Name | Description |
| DateTime | registered | Registered when. |
Returns
| Type | Description |
| Void |
SetRegisteredAssociateId(Integer)
Declaration
Void SetRegisteredAssociateId(Integer registeredAssociateId) Examples
NSShipmentMessageBlockEntity thing;
Integer registeredAssociateId;
thing.SetRegisteredAssociateId(registeredAssociateId);
Parameters
| Type | Name | Description |
| Integer | registeredAssociateId | Registered by whom. |
Returns
| Type | Description |
| Void |
SetShipmentMessageBlockId(Integer)
Declaration
Void SetShipmentMessageBlockId(Integer shipmentMessageBlockId) Examples
NSShipmentMessageBlockEntity thing;
Integer shipmentMessageBlockId;
thing.SetShipmentMessageBlockId(shipmentMessageBlockId);
Parameters
| Type | Name | Description |
| Integer | shipmentMessageBlockId | Primary key. |
Returns
| Type | Description |
| Void |
SetUpdated(DateTime)
Declaration
Void SetUpdated(DateTime updated) Examples
NSShipmentMessageBlockEntity thing;
DateTime updated;
thing.SetUpdated(updated);
Parameters
| Type | Name | Description |
| DateTime | updated | Last updated when. |
Returns
| Type | Description |
| Void |
SetUpdatedAssociateId(Integer)
Declaration
Void SetUpdatedAssociateId(Integer updatedAssociateId) Examples
NSShipmentMessageBlockEntity thing;
Integer updatedAssociateId;
thing.SetUpdatedAssociateId(updatedAssociateId);
Parameters
| Type | Name | Description |
| Integer | updatedAssociateId | Last updated by whom. |
Returns
| Type | Description |
| Void |
SetUpdatedCount(Integer)
Declaration
Void SetUpdatedCount(Integer updatedCount) Examples
NSShipmentMessageBlockEntity thing;
Integer updatedCount;
thing.SetUpdatedCount(updatedCount);
Parameters
| Type | Name | Description |
| Integer | updatedCount | Number of updates made to this record. |
Returns
| Type | Description |
| Void |