PhoneLogin data structure

Element

Description

Type

Occurrences

hasPhoneLogin

Whether the associated User has a phone login

Boolean

1

phoneLogin

The associated User's phone login ID

string

1

phonePassword

The User's phone login password

string

1

Specification:

<xs:complexType name="PhoneLogin">

  <xs:sequence>

    <xs:element name="hasPhoneLogin" type="xs:boolean"/>

    <xs:element name="phoneLogin" nillable="true" type="xs:string"/>

    <xs:element name="phonePassword" nillable="true" type="xs:string"/>

  </xs:sequence>

</xs:complexType>

Example