a09ee928521483d21c65fb03087225ca8179fa70
[WP-Plugins/glm-member-db-registrations.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class HyperSchema extends PPModel {
7         /**
8          * 
9          * @array
10          * @param PayPal\Api\Links $links
11          */
12         public function setLinks($links) {
13                 $this->links = $links;
14                 return $this;
15         }
16
17         /**
18          * 
19          * @return PayPal\Api\Links
20          */
21         public function getLinks() {
22                 return $this->links;
23         }
24
25
26         /**
27          * 
28          * @param string $fragmentResolution
29          */
30         public function setFragmentResolution($fragmentResolution) {
31                 $this->fragmentResolution = $fragmentResolution;
32                 return $this;
33         }
34
35         /**
36          * 
37          * @return string
38          */
39         public function getFragmentResolution() {
40                 return $this->fragmentResolution;
41         }
42
43
44         /**
45          * 
46          * @param boolean $readonly
47          */
48         public function setReadonly($readonly) {
49                 $this->readonly = $readonly;
50                 return $this;
51         }
52
53         /**
54          * 
55          * @return boolean
56          */
57         public function getReadonly() {
58                 return $this->readonly;
59         }
60
61
62         /**
63          * 
64          * @param string $contentEncoding
65          */
66         public function setContentEncoding($contentEncoding) {
67                 $this->contentEncoding = $contentEncoding;
68                 return $this;
69         }
70
71         /**
72          * 
73          * @return string
74          */
75         public function getContentEncoding() {
76                 return $this->contentEncoding;
77         }
78
79
80         /**
81          * 
82          * @param string $pathStart
83          */
84         public function setPathStart($pathStart) {
85                 $this->pathStart = $pathStart;
86                 return $this;
87         }
88
89         /**
90          * 
91          * @return string
92          */
93         public function getPathStart() {
94                 return $this->pathStart;
95         }
96
97
98         /**
99          * 
100          * @param string $mediaType
101          */
102         public function setMediaType($mediaType) {
103                 $this->mediaType = $mediaType;
104                 return $this;
105         }
106
107         /**
108          * 
109          * @return string
110          */
111         public function getMediaType() {
112                 return $this->mediaType;
113         }
114
115
116 }