<xs:complexType name="DirectBillType">
<xs:annotation>
<xs:documentation xml:lang="en">Company name and location for sending invoice for remittances for travel services.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="CompanyName" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Company name to whom remittance should be directed.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="CompanyNameType">
<xs:attribute name="ContactName" type="StringLength1to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">This may be used to pass the name of the contact at the company for which the direct bill applies.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Address" type="AddressInfoType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Address where remittance should be directed.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Email" type="EmailType" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Email address to which remittance should be directed.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Telephone" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Telephone number associated with company to whom remittance is being directed.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="TelephoneInfoGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Information about a telephone number, including the actual number and its usage.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="PrivacyGroup">
<xs:annotation>
<xs:documentation xml:lang="en">Allows for control of the sharing of direct bill data between parties.</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attribute name="DirectBill_ID" type="StringLength1to32" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">Identifier for the organization to be billed directly for travel services.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BillingNumber" type="StringLength0to64" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">The number assigned by the subscriber for billing reconciliation of a corporate account.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
|