This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/lib/PayPal/Api/HyperSchema.php
2013-05-29 14:37:22 +05:30

117 lines
1.6 KiB
PHP

<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
class HyperSchema extends PPModel {
/**
*
* @array
* @param PayPal\Api\Links $links
*/
public function setLinks($links) {
$this->links = $links;
return $this;
}
/**
*
* @return PayPal\Api\Links
*/
public function getLinks() {
return $this->links;
}
/**
*
* @param string $fragmentResolution
*/
public function setFragmentResolution($fragmentResolution) {
$this->fragmentResolution = $fragmentResolution;
return $this;
}
/**
*
* @return string
*/
public function getFragmentResolution() {
return $this->fragmentResolution;
}
/**
*
* @param boolean $readonly
*/
public function setReadonly($readonly) {
$this->readonly = $readonly;
return $this;
}
/**
*
* @return boolean
*/
public function getReadonly() {
return $this->readonly;
}
/**
*
* @param string $contentEncoding
*/
public function setContentEncoding($contentEncoding) {
$this->contentEncoding = $contentEncoding;
return $this;
}
/**
*
* @return string
*/
public function getContentEncoding() {
return $this->contentEncoding;
}
/**
*
* @param string $pathStart
*/
public function setPathStart($pathStart) {
$this->pathStart = $pathStart;
return $this;
}
/**
*
* @return string
*/
public function getPathStart() {
return $this->pathStart;
}
/**
*
* @param string $mediaType
*/
public function setMediaType($mediaType) {
$this->mediaType = $mediaType;
return $this;
}
/**
*
* @return string
*/
public function getMediaType() {
return $this->mediaType;
}
}