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 'typeResponse.php';
10: require_once 'typeSanVerification.php';
11:
12: /*
13: <xs:complexType name="renewCertificateResponse">
14: <xs:complexContent>
15: <xs:extension base="tns:response">
16: <xs:sequence>
17: <xs:element name="orderID" type="xs:string"/>
18: <xs:element minOccurs="0" name="verifications" type="tns:verifications"/>
19: </xs:sequence>
20: </xs:extension>
21: </xs:complexContent>
22: </xs:complexType>
23: */
24:
25: /**
26: * This class represents the renewCertificateResponse WSDL type.
27: *
28: * It is an extension to the PartnerAPITypeResponse class.
29: *
30: * @method PartnerAPITypeRenewCertificateResponse setOrderID(string $value) Sets the orderID element.
31: * @method string getOrderID() Gets the orderID element.
32: * @property string $orderID Gets the orderID element.
33: *
34: * @method PartnerAPITypeRenewCertificateResponse setSANVerification(PartnerAPITypeSanVerification $value) Sets the SANVerification element.
35: * @method PartnerAPITypeSanVerification getSANVerification() Gets the SANVerification element or NULL.
36: * @property PartnerAPITypeSanVerification $SANVerification Gets the SANVerification element or NULL.
37: *
38: * @package types
39: */
40: class PartnerAPITypeRenewCertificateResponse extends PartnerAPITypeResponse {
41:
42: protected function initData() {
43: $p = parent::initData();
44: $n = array(
45: 'orderID' => array('min' => 1, 'max' => 1, 'value' => NULL, 'type' => 'string', 'nillable' => FALSE),
46: 'SANVerification' => array('min' => 0, 'max' => 1, 'value' => NULL, 'type' => 'PartnerAPITypeSanVerification', 'nillable' => FALSE)
47: );
48: $n = array_merge($p, $n);
49: return $n;
50: }
51:
52:
53: }
54: