17 lines
408 B
PHP
17 lines
408 B
PHP
<?php
|
|
|
|
namespace App\Services\Rackspace\ObjectStoreCdn\v1;
|
|
|
|
use OpenStack\Common\Api\AbstractParams;
|
|
|
|
class Params extends AbstractParams
|
|
{
|
|
public function format(): array
|
|
{
|
|
return [
|
|
'location' => self::QUERY,
|
|
'type' => self::STRING_TYPE,
|
|
'description' => 'Defines the format of the collection. Will always default to `json`.',
|
|
];
|
|
}
|
|
} |