User Tools

Site Tools


en:lensorder:version010602:complextypes:contactinfo:orderparties

Differences

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

Link to this comparison view

en:lensorder:version010602:complextypes:contactinfo:orderparties [2014/06/18 11:25] – external edit 127.0.0.1en:lensorder:version010602:complextypes:contactinfo:orderparties [2016/05/04 12:13] (current) larabernau
Line 1: Line 1:
 +====== contact (ContactInfo) ======
  
 +[[en:lensorder:version010602:structure|b2boptic]] -> [[en:lensorder:version010602:complextypes:header|header]] -> [[en:lensorder:version010602:complextypes:account:orderparties|orderParties]] -> contact
 +
 +{{:en:lensorder:version010602:complextypes:xsd_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>