0
0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2024-11-24 00:29:35 +00:00
salesagility_SuiteCRM/Api/V8/JsonApi/Response/DataResponse.php
2023-07-18 15:53:08 +01:00

122 lines
2.1 KiB
PHP

<?php
namespace Api\V8\JsonApi\Response;
#[\AllowDynamicProperties]
class DataResponse implements \JsonSerializable
{
/**
* @var string
*/
private $type;
/**
* @var string
*/
private $id;
/**
* @var AttributeResponse
*/
private $attributes;
/**
* @var RelationshipResponse
*/
private $relationships;
/**
* @var LinksResponse
*/
private $links;
/**
* @param string $type
* @param string $id
*/
public function __construct($type, $id)
{
$this->type = $type;
$this->id = $id;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @return AttributeResponse
*/
public function getAttributes()
{
return $this->attributes;
}
/**
* @param AttributeResponse $attributes
*/
public function setAttributes(AttributeResponse $attributes)
{
$this->attributes = $attributes;
}
/**
* @return RelationshipResponse
*/
public function getRelationships()
{
return $this->relationships;
}
/**
* @param RelationshipResponse $relationships
*/
public function setRelationships(RelationshipResponse $relationships)
{
$this->relationships = $relationships;
}
/**
* @return LinksResponse
*/
public function getLinks()
{
return $this->links;
}
/**
* @param LinksResponse $links
*/
public function setLinks(LinksResponse $links)
{
$this->links = $links;
}
/**
* @inheritdoc
*/
public function jsonSerialize()
{
$response = [
'type' => $this->getType(),
'id' => $this->getId(),
'attributes' => $this->getAttributes(),
'relationships' => $this->getRelationships(),
'links' => $this->getLinks()
];
return array_filter($response);
}
}