User Tools

Site Tools


en:jobdata:version010603:complextypes:contactinfo:orderparties

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:jobdata:version010603:complextypes:contactinfo:orderparties [2017/03/08 16:18] larabernauen:jobdata:version010603:complextypes:contactinfo:orderparties [2017/06/19 18:25] (current) sebastianraring
Line 1: Line 1:
 +====== contact (ContactInfo) ======
  
 +[[en:jobdata:version010603:structure|b2bOpticJobData]] -> [[en:jobdata:version010603:complextypes:header|header]] -> [[en:jobdata:version010603:complextypes:account:orderparties|orderParties]] -> contact
 +
 +{{:en:jobdata:version010603:images:contactinfo.png?nolink|ContactInfo}}
 +
 +^ title ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description |  |
 +
 +^ firstName ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description |  |
 +
 +^ lastName ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ description |  |
 +
 +^ phone ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +^ fax ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +^ eMail ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +<code xml>
 +<xs:complexType name="ContactInfo">
 +  <xs:sequence>
 +    <xs:element name="title" type="xs:string" minOccurs="0"/>
 +    <xs:element name="firstName" type="xs:string" minOccurs="0"/>
 +    <xs:element name="lastName" type="xs:string"/>
 +    <xs:element name="phone" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +    <xs:element name="fax" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +    <xs:element name="eMail" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +  </xs:sequence>
 +</xs:complexType>
 +</code>