CurrencyFeatureSetPrice
in package
implements
ModelInterface, ArrayAccess
CurrencyFeatureSetPrice Class Doc Comment
Tags
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
- getEnvelopeFee() : string|null
- Gets envelope_fee
- getFixedFee() : string|null
- Gets fixed_fee
- getModelName() : string
- The original name of the model.
- getSeatFee() : string|null
- Gets seat_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
- setEnvelopeFee() : $this
- Sets envelope_fee
- setFixedFee() : $this
- Sets fixed_fee
- setSeatFee() : $this
- Sets seat_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
DISCRIMINATOR
public
mixed
DISCRIMINATOR
= null
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', 'envelope_fee' => 'envelopeFee', 'fixed_fee' => 'fixedFee', 'seat_fee' => 'seatFee']
$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', 'envelope_fee' => 'getEnvelopeFee', 'fixed_fee' => 'getFixedFee', 'seat_fee' => 'getSeatFee']
$setters
Array of attributes to setter functions (for deserialization of responses)
protected
static array<string|int, string>
$setters
= ['currency_code' => 'setCurrencyCode', 'currency_symbol' => 'setCurrencySymbol', 'envelope_fee' => 'setEnvelopeFee', 'fixed_fee' => 'setFixedFee', 'seat_fee' => 'setSeatFee']
$swaggerFormats
Array of property to format mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerFormats
= ['currency_code' => null, 'currency_symbol' => null, 'envelope_fee' => null, 'fixed_fee' => null, 'seat_fee' => null]
$swaggerModelName
The original name of the model.
protected
static string
$swaggerModelName
= 'currencyFeatureSetPrice'
$swaggerTypes
Array of property to type mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerTypes
= ['currency_code' => '?string', 'currency_symbol' => '?string', 'envelope_fee' => '?string', 'fixed_fee' => '?string', 'seat_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 —getEnvelopeFee()
Gets envelope_fee
public
getEnvelopeFee() : string|null
Return values
string|null —getFixedFee()
Gets fixed_fee
public
getFixedFee() : string|null
Return values
string|null —getModelName()
The original name of the model.
public
getModelName() : string
Return values
string —getSeatFee()
Gets seat_fee
public
getSeatFee() : 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 alternate 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 alternate currency symbol for the account.
Return values
$this —setEnvelopeFee()
Sets envelope_fee
public
setEnvelopeFee(string|null $envelope_fee) : $this
Parameters
- $envelope_fee : string|null
-
An incremental envelope cost for plans with envelope overages (when
isEnabled
is set to true.)
Return values
$this —setFixedFee()
Sets fixed_fee
public
setFixedFee(string|null $fixed_fee) : $this
Parameters
- $fixed_fee : string|null
-
Specifies a one-time fee associated with the plan (when
isEnabled
is set to true.)
Return values
$this —setSeatFee()
Sets seat_fee
public
setSeatFee(string|null $seat_fee) : $this
Parameters
- $seat_fee : string|null
-
Specifies an incremental seat cost for seat-based plans (when
isEnabled
is set to true.)
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