Documentation

FundingAccountSnapshotResponse implements ModelInterface, ArrayAccess

Warning:

This class subject to change without prior notice, Please dont use this class directly.

Tags
category

Class

description

The customer's funding account with which the payment is being made.

Interfaces, Classes and Traits

ModelInterface
Warning:
ArrayAccess

Table of Contents

ACCOUNT_SUBTYPE_AMERICAN_EXPRESS_CREDIT  = 'american_express_credit'
ACCOUNT_SUBTYPE_APPLE_PAY  = 'apple_pay'
ACCOUNT_SUBTYPE_CHECKING  = 'checking'
ACCOUNT_SUBTYPE_DISCOVER_CREDIT  = 'discover_credit'
ACCOUNT_SUBTYPE_DISCOVER_DEBIT  = 'discover_debit'
ACCOUNT_SUBTYPE_MASTERCARD_CREDIT  = 'mastercard_credit'
ACCOUNT_SUBTYPE_MASTERCARD_DEBIT  = 'mastercard_debit'
ACCOUNT_SUBTYPE_MONEY_MARKET  = 'money_market'
ACCOUNT_SUBTYPE_SAVINGS  = 'savings'
ACCOUNT_SUBTYPE_VISA_CREDIT  = 'visa_credit'
ACCOUNT_SUBTYPE_VISA_DEBIT  = 'visa_debit'
ACCOUNT_TYPE_BANK  = 'bank'
ACCOUNT_TYPE_CREDIT_CARD  = 'credit_card'
ACCOUNT_TYPE_DEBIT_CARD  = 'debit_card'
ACCOUNT_TYPE_WALLET  = 'wallet'
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
getAbaRoutingNumber()  : string
Gets aba_routing_number
getAccountHolderName()  : string
Gets account_holder_name
getAccountNumber()  : string
Gets account_number
getAccountSubtype()  : string
Gets account_subtype
getAccountSubtypeAllowableValues()  : array<string|int, string>
Gets allowable values of the enum
getAccountType()  : string
Gets account_type
getAccountTypeAllowableValues()  : array<string|int, string>
Gets allowable values of the enum
getDisplayText()  : string
Gets display_text
getId()  : string
Gets id
getIssuerName()  : string
Gets issuer_name
getModelName()  : string
The original name of the model.
getNickname()  : string
Gets nickname
getters()  : array<string|int, mixed>
Array of attributes to getter functions (for serialization of requests)
getUrl()  : string
Gets url
offsetExists()  : bool
Returns true if offset exists. False otherwise.
offsetGet()  : mixed
Gets offset.
offsetSet()  : void
Sets value based on offset.
offsetUnset()  : void
Unsets offset.
setAbaRoutingNumber()  : $this
Sets aba_routing_number
setAccountHolderName()  : $this
Sets account_holder_name
setAccountNumber()  : $this
Sets account_number
setAccountSubtype()  : $this
Sets account_subtype
setAccountType()  : $this
Sets account_type
setDisplayText()  : $this
Sets display_text
setId()  : $this
Sets id
setIssuerName()  : $this
Sets issuer_name
setNickname()  : $this
Sets nickname
setters()  : array<string|int, mixed>
Array of attributes to setter functions (for deserialization of responses)
setUrl()  : $this
Sets url
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

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 = ['id' => 'id', 'url' => 'url', 'account_number' => 'account_number', 'account_type' => 'account_type', 'account_subtype' => 'account_subtype', 'aba_routing_number' => 'aba_routing_number', 'issuer_name' => 'issuer_name', 'nickname' => 'nickname', 'display_text' => 'display_text', 'account_holder_name' => 'account_holder_name']

$getters

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

protected static array<string|int, string> $getters = ['id' => 'getId', 'url' => 'getUrl', 'account_number' => 'getAccountNumber', 'account_type' => 'getAccountType', 'account_subtype' => 'getAccountSubtype', 'aba_routing_number' => 'getAbaRoutingNumber', 'issuer_name' => 'getIssuerName', 'nickname' => 'getNickname', 'display_text' => 'getDisplayText', 'account_holder_name' => 'getAccountHolderName']

$setters

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

protected static array<string|int, string> $setters = ['id' => 'setId', 'url' => 'setUrl', 'account_number' => 'setAccountNumber', 'account_type' => 'setAccountType', 'account_subtype' => 'setAccountSubtype', 'aba_routing_number' => 'setAbaRoutingNumber', 'issuer_name' => 'setIssuerName', 'nickname' => 'setNickname', 'display_text' => 'setDisplayText', 'account_holder_name' => 'setAccountHolderName']

$swaggerFormats

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

protected static array<string|int, string> $swaggerFormats = ['id' => null, 'url' => null, 'account_number' => null, 'account_type' => null, 'account_subtype' => null, 'aba_routing_number' => null, 'issuer_name' => null, 'nickname' => null, 'display_text' => null, 'account_holder_name' => null]

$swaggerTypes

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

protected static array<string|int, string> $swaggerTypes = ['id' => 'string', 'url' => 'string', 'account_number' => 'string', 'account_type' => 'string', 'account_subtype' => 'string', 'aba_routing_number' => 'string', 'issuer_name' => 'string', 'nickname' => 'string', 'display_text' => 'string', 'account_holder_name' => '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

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>

getAccountSubtypeAllowableValues()

Gets allowable values of the enum

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

getAccountTypeAllowableValues()

Gets allowable values of the enum

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

getters()

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

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

offsetExists()

Returns true if offset exists. False otherwise.

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

Offset

Return values
bool

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

setAbaRoutingNumber()

Sets aba_routing_number

public setAbaRoutingNumber(string $aba_routing_number) : $this
Parameters
$aba_routing_number : string

The ABA/Routing number for the bank account.

Return values
$this

setAccountHolderName()

Sets account_holder_name

public setAccountHolderName(string $account_holder_name) : $this
Parameters
$account_holder_name : string

The name as specified on the account.

Return values
$this

setAccountNumber()

Sets account_number

public setAccountNumber(string $account_number) : $this
Parameters
$account_number : string

The number or reference that a customer uses to identify the funding account. In case of Apple Pay, this is the device-specific account number of the card.

Return values
$this

setAccountSubtype()

Sets account_subtype

public setAccountSubtype(string $account_subtype) : $this
Parameters
$account_subtype : string

The sub type of the funding account. This is derived by EBPP in the case of card funding accounts. It needs to be passed when adding or editing a DDA/Bank/ApplePay account.

Return values
$this

setAccountType()

Sets account_type

public setAccountType(string $account_type) : $this
Parameters
$account_type : string

The type of the funding account.

Return values
$this

setDisplayText()

Sets display_text

public setDisplayText(string $display_text) : $this
Parameters
$display_text : string

UI representation of the account.

Return values
$this

setId()

Sets id

public setId(string $id) : $this
Parameters
$id : string

Id is a unique identifier assigned to the account in EBPP.

Return values
$this

setIssuerName()

Sets issuer_name

public setIssuerName(string $issuer_name) : $this
Parameters
$issuer_name : string

The name of the authority that has issued the account. This is relevant only in the case of bank accounts.

Return values
$this

setNickname()

Sets nickname

public setNickname(string $nickname) : $this
Parameters
$nickname : string

The nickname by which a customer might want to identify the account.

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>

setUrl()

Sets url

public setUrl(string $url) : $this
Parameters
$url : string

This URL fetches the funding account details.

Return values
$this

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>

Search results