1: <?php
2: /**
3: * Partner API Library
4: *
5: * @copyright Copyright (c) 2020 Asseco Data Systems SA
6: * @license license.txt
7: */
8:
9: require_once 'typeRequest.php';
10:
11: /*
12: <xs:complexType name="getSanVerificationStateRequest">
13: <xs:complexContent>
14: <xs:extension base="tns:request">
15: <xs:sequence>
16: <xs:element name="orderID" type="xs:string"/>
17: </xs:sequence>
18: </xs:extension>
19: </xs:complexContent>
20: </xs:complexType>
21: */
22:
23: /**
24: * This class represents the getSanVerificationStateRequest WSDL type.
25: *
26: * It is an extension to the PartnerAPITypeRequest class.
27: *
28: * @method PartnerAPITypeGetSanVerificationStateRequest setOrderID(string $value) Sets the orderID element.
29: * @method string getOrderID() Gets the orderID element.
30: * @property string $orderID Gets the orderID element.
31: *
32: * @method PartnerAPITypeGetSanVerificationStateRequest setOrderOption(PartnerAPITypeOrderOption $value) Sets the orderOption element.
33: * @method PartnerAPITypeOrderOption getOrderOption() Gets the orderOption element or NULL.
34: * @property PartnerAPITypeOrderOption $orderOption Gets the orderOption element or NULL.
35: *
36: * @package types
37: */
38: class PartnerAPITypeGetSanVerificationStateRequest extends PartnerAPITypeRequest {
39:
40: protected function initData() {
41: $p = parent::initData();
42: $n = array(
43: 'orderID' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'string', 'nillable' => FALSE)
44: );
45: $n = array_merge($p, $n);
46: return $n;
47: }
48:
49:
50: }
51: