...
Element | Data Type | Required? | Default | Description | Sample Data |
---|---|---|---|---|---|
ClientId | Int32 | On Insert: No On Update: No | The client Id is a unique identifier for a client. For internal use only | ||
ClientNumber | String (20) | On Insert: No On Update: Yes (if ClientUid is not supplied) | The client number is a unique identifier for a client | PR-PSA | |
ClientUid | Int64 | On Insert: No On Update: Yes (if ClientNumber is not supplied) | The client Uid is a unique and immutable identifier for a client | 1152921504606961482 | |
ClientName | String (50) | On Insert: Yes On Update: No | The client name | Projector PSA | |
InactiveFlag | Boolean | On Insert: No On Update: No | false | If set to 'true' the client has a status of "Inactive", if set to 'false' the client has a status of "Active" | true/false |
ParentClientIdentity | The parent client identity associated with the client (if any). Click here for more information. |
Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<PwsClientSummary> <ClientId i:nil="true"/> <ClientNumber>PR-PSA</ClientNumber> <ClientUid>1152921504606961482</ClientUid> <ClientName>Projector PSA</ClientName> <InactiveFlag>false</InactiveFlag> <ParentClientIdentity i:nil="true"/> </PwsClientSummary> |
...