Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <xsd:complexType name="ValidatePaymentRequestType">
  2. <xsd:sequence>
  3. <xsd:element name="imports" type="PaymentsType"/>
  4. </xsd:sequence>
  5. </xsd:complexType>
  6. <xsd:complexType name="ValidatePaymentResponseType">
  7. <xsd:sequence>
  8. <xsd:element name="ckecked" type="xsd:boolean"/>
  9. </xsd:sequence>
  10. </xsd:complexType>
  11. <xsd:complexType name="PaymentsType">
  12. <xsd:sequence>
  13. <xsd:element name="import" type="PaymentType" maxOccurs="unbounded" minOccurs="0"/>
  14. </xsd:sequence>
  15. </xsd:complexType>
  16. <xsd:complexType name="PaymentType">
  17. <xsd:sequence>
  18. <xsd:element name="type" type="xsd:string"/>
  19. <xsd:element name="tax" type="xsd:float"/>
  20. <xsd:element name="amount" type="xsd:float"/>
  21. </xsd:sequence>
  22. </xsd:complexType>
  23. <xsd:element name="ValidatePaymentRequest" type="ValidatePaymentRequestType"/>
  24. <xsd:element name="ValidatePaymentResponse" type="ValidatePaymentResponseType"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement