Documentation

CurrencyPlanPrice
in package
implements ModelInterface, ArrayAccess

CurrencyPlanPrice Class Doc Comment

Tags
category

Class

author

Swagger Codegen team apihelp@docusign.com

license

The DocuSign PHP Client SDK is licensed under the MIT License.

link
https://github.com/swagger-api/swagger-codegen

Interfaces, Classes, Traits and Enums

ModelInterface
Interface abstracting model access.
ArrayAccess

Table of Contents

DISCRIMINATOR  = null
$attributeMap  : array<string|int, string>
Array of attributes where the key is the local name, and the value is the original name
$container  : array<string|int, mixed>
Associative array for storing property values
$getters  : array<string|int, string>
Array of attributes to getter functions (for serialization of requests)
$setters  : array<string|int, string>
Array of attributes to setter functions (for deserialization of responses)
$swaggerFormats  : array<string|int, string>
Array of property to format mappings. Used for (de)serialization
$swaggerModelName  : string
The original name of the model.
$swaggerTypes  : array<string|int, string>
Array of property to type mappings. Used for (de)serialization
__construct()  : mixed
Constructor
__toString()  : string
Gets the string presentation of the object
attributeMap()  : array<string|int, mixed>
Array of attributes where the key is the local name, and the value is the original name
getCurrencyCode()  : string|null
Gets currency_code
getCurrencySymbol()  : string|null
Gets currency_symbol
getModelName()  : string
The original name of the model.
getPerSeatPrice()  : string|null
Gets per_seat_price
getSupportedCardTypes()  : CreditCardTypes
Gets supported_card_types
getSupportIncidentFee()  : string|null
Gets support_incident_fee
getSupportPlanFee()  : string|null
Gets support_plan_fee
getters()  : array<string|int, mixed>
Array of attributes to getter functions (for serialization of requests)
listInvalidProperties()  : array<string|int, mixed>
Show all the invalid properties with reasons.
offsetExists()  : bool
Returns true if offset exists. False otherwise.
offsetGet()  : mixed
Gets offset.
offsetSet()  : void
Sets value based on offset.
offsetUnset()  : void
Unsets offset.
setCurrencyCode()  : $this
Sets currency_code
setCurrencySymbol()  : $this
Sets currency_symbol
setPerSeatPrice()  : $this
Sets per_seat_price
setSupportedCardTypes()  : $this
Sets supported_card_types
setSupportIncidentFee()  : $this
Sets support_incident_fee
setSupportPlanFee()  : $this
Sets support_plan_fee
setters()  : array<string|int, mixed>
Array of attributes to setter functions (for deserialization of responses)
swaggerFormats()  : array<string|int, mixed>
Array of property to format mappings. Used for (de)serialization
swaggerTypes()  : array<string|int, mixed>
Array of property to type mappings. Used for (de)serialization
valid()  : bool
Validate all the properties in the model return true if all passed

Constants

Properties

$attributeMap

Array of attributes where the key is the local name, and the value is the original name

protected static array<string|int, string> $attributeMap = ['currency_code' => 'currencyCode', 'currency_symbol' => 'currencySymbol', 'per_seat_price' => 'perSeatPrice', 'supported_card_types' => 'supportedCardTypes', 'support_incident_fee' => 'supportIncidentFee', 'support_plan_fee' => 'supportPlanFee']

$container

Associative array for storing property values

protected array<string|int, mixed> $container = []

$getters

Array of attributes to getter functions (for serialization of requests)

protected static array<string|int, string> $getters = ['currency_code' => 'getCurrencyCode', 'currency_symbol' => 'getCurrencySymbol', 'per_seat_price' => 'getPerSeatPrice', 'supported_card_types' => 'getSupportedCardTypes', 'support_incident_fee' => 'getSupportIncidentFee', 'support_plan_fee' => 'getSupportPlanFee']

$setters

Array of attributes to setter functions (for deserialization of responses)

protected static array<string|int, string> $setters = ['currency_code' => 'setCurrencyCode', 'currency_symbol' => 'setCurrencySymbol', 'per_seat_price' => 'setPerSeatPrice', 'supported_card_types' => 'setSupportedCardTypes', 'support_incident_fee' => 'setSupportIncidentFee', 'support_plan_fee' => 'setSupportPlanFee']

$swaggerFormats

Array of property to format mappings. Used for (de)serialization

protected static array<string|int, string> $swaggerFormats = ['currency_code' => null, 'currency_symbol' => null, 'per_seat_price' => null, 'supported_card_types' => null, 'support_incident_fee' => null, 'support_plan_fee' => null]

$swaggerModelName

The original name of the model.

protected static string $swaggerModelName = 'currencyPlanPrice'

$swaggerTypes

Array of property to type mappings. Used for (de)serialization

protected static array<string|int, string> $swaggerTypes = ['currency_code' => '?string', 'currency_symbol' => '?string', 'per_seat_price' => '?string', 'supported_card_types' => '\\DocuSign\\eSign\\Model\\CreditCardTypes', 'support_incident_fee' => '?string', 'support_plan_fee' => '?string']

Methods

__construct()

Constructor

public __construct([array<string|int, mixed> $data = null ]) : mixed
Parameters
$data : array<string|int, mixed> = null

Associated array of property values initializing the model

Return values
mixed

__toString()

Gets the string presentation of the object

public __toString() : string
Return values
string

attributeMap()

Array of attributes where the key is the local name, and the value is the original name

public static attributeMap() : array<string|int, mixed>
Return values
array<string|int, mixed>

getCurrencyCode()

Gets currency_code

public getCurrencyCode() : string|null
Return values
string|null

getCurrencySymbol()

Gets currency_symbol

public getCurrencySymbol() : string|null
Return values
string|null

getModelName()

The original name of the model.

public getModelName() : string
Return values
string

getPerSeatPrice()

Gets per_seat_price

public getPerSeatPrice() : string|null
Return values
string|null

getSupportIncidentFee()

Gets support_incident_fee

public getSupportIncidentFee() : string|null
Return values
string|null

getSupportPlanFee()

Gets support_plan_fee

public getSupportPlanFee() : string|null
Return values
string|null

getters()

Array of attributes to getter functions (for serialization of requests)

public static getters() : array<string|int, mixed>
Return values
array<string|int, mixed>

listInvalidProperties()

Show all the invalid properties with reasons.

public listInvalidProperties() : array<string|int, mixed>
Return values
array<string|int, mixed>

invalid properties with reasons

offsetExists()

Returns true if offset exists. False otherwise.

public offsetExists(int $offset) : bool
Parameters
$offset : int

Offset

Return values
bool

offsetGet()

Gets offset.

public offsetGet(int $offset) : mixed
Parameters
$offset : int

Offset

Return values
mixed

offsetSet()

Sets value based on offset.

public offsetSet(int $offset, mixed $value) : void
Parameters
$offset : int

Offset

$value : mixed

Value to be set

Return values
void

offsetUnset()

Unsets offset.

public offsetUnset(int $offset) : void
Parameters
$offset : int

Offset

Return values
void

setCurrencyCode()

Sets currency_code

public setCurrencyCode(string|null $currency_code) : $this
Parameters
$currency_code : string|null

Specifies the ISO currency code for the account.

Return values
$this

setCurrencySymbol()

Sets currency_symbol

public setCurrencySymbol(string|null $currency_symbol) : $this
Parameters
$currency_symbol : string|null

Specifies the currency symbol for the account.

Return values
$this

setPerSeatPrice()

Sets per_seat_price

public setPerSeatPrice(string|null $per_seat_price) : $this
Parameters
$per_seat_price : string|null
Return values
$this

setSupportedCardTypes()

Sets supported_card_types

public setSupportedCardTypes(CreditCardTypes $supported_card_types) : $this
Parameters
$supported_card_types : CreditCardTypes

A simple type enumeration of the language used. The supported languages, with the language value shown in parenthesis, are: Arabic (ar), Bahasa Indonesia (id), Bahasa Melayu (ms) Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro),Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi).

Return values
$this

setSupportIncidentFee()

Sets support_incident_fee

public setSupportIncidentFee(string|null $support_incident_fee) : $this
Parameters
$support_incident_fee : string|null

The support incident fee charged for each support incident.

Return values
$this

setSupportPlanFee()

Sets support_plan_fee

public setSupportPlanFee(string|null $support_plan_fee) : $this
Parameters
$support_plan_fee : string|null

The support plan fee charged for this plan.

Return values
$this

setters()

Array of attributes to setter functions (for deserialization of responses)

public static setters() : array<string|int, mixed>
Return values
array<string|int, mixed>

swaggerFormats()

Array of property to format mappings. Used for (de)serialization

public static swaggerFormats() : array<string|int, mixed>
Return values
array<string|int, mixed>

swaggerTypes()

Array of property to type mappings. Used for (de)serialization

public static swaggerTypes() : array<string|int, mixed>
Return values
array<string|int, mixed>

valid()

Validate all the properties in the model return true if all passed

public valid() : bool
Return values
bool

True if all properties are valid

Search results