Versions Compared

Key

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

...

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

Elements


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

On Insert: No

On Update: Yes (if ClientUid is not supplied) 

 

The client number is a unique identifier for a client

.

Client
PR-
001
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

On Insert: Yes

On Update: No 

 

The client name

is a unique identifier for a client.

Projector
PSA
 PSA 

InactiveFlag

Boolean

On Insert: No

On Update: No 

 false

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

.

true/false 

ParentClientIdentity

PwsClientRef

 

 

The parent client identity associated with the client (if any)

.

 

Usage Example(s)


Code Block
languagexml
titleExample 01 - Client without parent
collapsetrue
              <PwsClientSummary>
                  <ClientId i:nil="true"/>
                  <ClientNumber>Projector <ClientNumber>PR-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>PR-PSA(W)</ClientNumber>
                  <ClientUid>1152921504606989813</ClientUid>
                  <ClientName>Acme<ClientName>Projector PSA 1000-01< West</ClientName>
                  <InactiveFlag>false</InactiveFlag>
                  <ParentClientIdentity>
                     <ClientId i:nil="true"/>
                     <ClientNumber>C000118<<ClientNumber>PR-PSA</ClientNumber>
                     <ClientUid>1152921504606989807<<ClientUid>1152921504606961482</ClientUid>
                  </ParentClientIdentity>
               </PwsClientSummary>