class ApiKey extends BaseResource

ApiKey class.

Properties

protected SystemProperties $sys from BaseResource
protected Client|null $client from BaseResource
protected string $name
protected string|null $description
protected string|null $accessToken

Methods

initialize(string $type, array $sys = [])

Initialize system properties.

getSystemProperties()

{@inheritdoc}

getId()

{@inheritdoc}

getType()

{@inheritdoc}

asLink()

{@inheritdoc}

mixed
asRequestBody()

Returns the resource in the form of request body.

setClient(Client $client)

Sets the current Client object instance.

string
getName()

No description

setName(string $name)

No description

string|null
getDescription()

No description

setDescription(string $description)

No description

string|null
getAccessToken()

No description

array
jsonSerialize()

Returns an array to be used by "json_encode" to serialize objects of this class.

Details

in BaseResource at line 39
protected initialize(string $type, array $sys = [])

Initialize system properties.

Parameters

string $type The system type
array $sys

in BaseResource at line 48
getSystemProperties()

{@inheritdoc}

in BaseResource at line 56
getId()

{@inheritdoc}

in BaseResource at line 64
getType()

{@inheritdoc}

{@inheritdoc}

in BaseResource at line 80
mixed asRequestBody()

Returns the resource in the form of request body.

This can differ from regular serialization, as some fields may not be present in the request payload.

Return Value

mixed

in BaseResource at line 98
BaseResource setClient(Client $client)

Sets the current Client object instance.

This is done automatically when performing API calls, so it shouldn't be used manually.

Parameters

Client $client

Return Value

BaseResource

at line 36
string getName()

Return Value

string

at line 46
ApiKey setName(string $name)

Parameters

string $name

Return Value

ApiKey

at line 56
string|null getDescription()

Return Value

string|null

at line 66
ApiKey setDescription(string $description)

Parameters

string $description

Return Value

ApiKey

at line 76
string|null getAccessToken()

Return Value

string|null

at line 86
array jsonSerialize()

Returns an array to be used by "json_encode" to serialize objects of this class.

Return Value

array