Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This specifies the fields associated with a client record.


ElementData TypeDescriptionDefault (on insert/update)Sample Data
ClientIdInt32Client Id. For internal use only.

ClientNumberStringThe client number is a unique identifier for a client.
Client-001
ClientUidInt64The client UID is a unique and immutable identifier for a client
1152921504606961482
ClientNameStringThe client name is a unique identifier for a client.
Acme 123
InactiveFlagBooleanValid values for this field include "true" or false". If "true" the client has a status of "Inactive", if "false" the client has a status of "Active"
false
ParentClientIdentityPwsClientRefParent client identity associated with the client

Usage Example(s)


Code Block
languagexml
titleExample 01 - Client without parent
collapsetrue
              <PwsClientSummary>
                  <ClientId i:nil="true"/>
                  <ClientNumber>Projector PSA</ClientNumber>
                  <ClientUid>1152921504606961482</ClientUid>
                  <ClientName>Projector PSA</ClientName>
                  <InactiveFlag>false</InactiveFlag>
                  <ParentClientIdentity i:nil="true"/>
               </PwsClientSummary>
Code Block
languagexml
titleExample 02 - Client with parent
collapsetrue
             <PwsClientSummary>
                  <ClientId i:nil="true"/>
                  <ClientNumber>C001000</ClientNumber>
                  <ClientUid>1152921504606989813</ClientUid>
                  <ClientName>Acme 1000-01</ClientName>
                  <InactiveFlag>false</InactiveFlag>
                  <ParentClientIdentity>
                     <ClientId i:nil="true"/>
                     <ClientNumber>C000118</ClientNumber>
                     <ClientUid>1152921504606989807</ClientUid>
                  </ParentClientIdentity>
               </PwsClientSummary>