9cbd85e8ca21f01f7f848a4242e7ec90922925b5
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Api;
3
4 use PayPal\Common\PPModel;
5
6 class Links extends PPModel {
7         /**
8          * 
9          * @param string $href
10          */
11         public function setHref($href) {
12                 $this->href = $href;
13                 return $this;
14         }
15
16         /**
17          * 
18          * @return string
19          */
20         public function getHref() {
21                 return $this->href;
22         }
23
24
25         /**
26          * 
27          * @param string $rel
28          */
29         public function setRel($rel) {
30                 $this->rel = $rel;
31                 return $this;
32         }
33
34         /**
35          * 
36          * @return string
37          */
38         public function getRel() {
39                 return $this->rel;
40         }
41
42
43         /**
44          * 
45          * @param PayPal\Api\HyperSchema $targetSchema
46          */
47         public function setTargetSchema($targetSchema) {
48                 $this->targetSchema = $targetSchema;
49                 return $this;
50         }
51
52         /**
53          * 
54          * @return PayPal\Api\HyperSchema
55          */
56         public function getTargetSchema() {
57                 return $this->targetSchema;
58         }
59
60
61         /**
62          * 
63          * @param string $method
64          */
65         public function setMethod($method) {
66                 $this->method = $method;
67                 return $this;
68         }
69
70         /**
71          * 
72          * @return string
73          */
74         public function getMethod() {
75                 return $this->method;
76         }
77
78
79         /**
80          * 
81          * @param string $enctype
82          */
83         public function setEnctype($enctype) {
84                 $this->enctype = $enctype;
85                 return $this;
86         }
87
88         /**
89          * 
90          * @return string
91          */
92         public function getEnctype() {
93                 return $this->enctype;
94         }
95
96
97         /**
98          * 
99          * @param PayPal\Api\HyperSchema $schema
100          */
101         public function setSchema($schema) {
102                 $this->schema = $schema;
103                 return $this;
104         }
105
106         /**
107          * 
108          * @return PayPal\Api\HyperSchema
109          */
110         public function getSchema() {
111                 return $this->schema;
112         }
113
114
115 }