Versions Compared

Key

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

...

This specifies the fields associated with a Client client record.

Format


Panel
titlePwsClientSummary
  • PwsClientSummary
    • ClientId: Int32
    • ClientNumber: String
    • ClientUid: Int64
    • ClientName: String
    • InactiveFlag: Boolean
    • ParentClientIdentity: PwsClientRef

...

Element

Data Type

Description

Sample Data

ClientId

Int32

The Client client Id is a unique identifier for a Clientclient. For internal use only.


ClientNumber

String

The Client Number client number is a unique identifier for a Clientclient.

Client-001

ClientUid

Int64

The Client client Uid is a unique and immutable identifier for a Clientclient

1152921504606961482

ClientName

String

The Client Name client name is a unique identifier for a Clientclient.

Projector PSA

InactiveFlag

Boolean

If "true" the client has a status of "Inactive", if "false" the client has a status of "Active".

true/false

ParentClientIdentity

PwsClientRef

Parent Client Identity The parent client identity associated with the Clientclient


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>

...