interface CustomerInterface implements ResourceInterface, RetrieveInterface, UpdateInterface, DeleteInterface, ListAllInterface

Methods

string
getId()

No description

mixed
retrieve(string $id)

No description

mixed
update(string $id, array $data)

No description

mixed
delete(string $id)

No description

listAll(array $arguments)

No description

create(string $email, string $token, array $arguments = [], string $key = null)

No description

createWithoutToken(string $email, array $arguments = [], string $key = null)

No description

Details

in Identifiable at line 7
string getId()

Return Value

string

in RetrieveInterface at line 15
mixed retrieve(string $id)

Parameters

string $id

Return Value

mixed

in UpdateInterface at line 16
mixed update(string $id, array $data)

Parameters

string $id
array $data

Return Value

mixed

in DeleteInterface at line 15
mixed delete(string $id)

Parameters

string $id

Return Value

mixed

in ListAllInterface at line 7
listAll(array $arguments)

Parameters

array $arguments

at line 13
CustomerInterface create(string $email, string $token, array $arguments = [], string $key = null)

Parameters

string $email
string $token
array $arguments
string $key

Return Value

CustomerInterface

at line 15
CustomerInterface createWithoutToken(string $email, array $arguments = [], string $key = null)

Parameters

string $email
array $arguments
string $key

Return Value

CustomerInterface