*/ class Attachment implements ApiResponse { private $data; public static function create(array $data) { $new = new self(); $new->data = $data; return $new; } public function getData() { return $this->data; } }