4 use PayPal\Common\PPModel;
6 class Links extends PPModel {
11 public function setHref($href) {
20 public function getHref() {
29 public function setRel($rel) {
38 public function getRel() {
45 * @param PayPal\Api\HyperSchema $targetSchema
47 public function setTargetSchema($targetSchema) {
48 $this->targetSchema = $targetSchema;
54 * @return PayPal\Api\HyperSchema
56 public function getTargetSchema() {
57 return $this->targetSchema;
63 * @param string $method
65 public function setMethod($method) {
66 $this->method = $method;
74 public function getMethod() {
81 * @param string $enctype
83 public function setEnctype($enctype) {
84 $this->enctype = $enctype;
92 public function getEnctype() {
93 return $this->enctype;
99 * @param PayPal\Api\HyperSchema $schema
101 public function setSchema($schema) {
102 $this->schema = $schema;
108 * @return PayPal\Api\HyperSchema
110 public function getSchema() {
111 return $this->schema;