A single instance of the Hyperwallet class is maintained. Resetting the current instance by calling
+setup(_: HyperwalletAuthenticationTokenProvider) is critical when switching between authenticated Users.
+Failure to do so will result in incorrect access and incorrect modifications to User data.
+
+
Authentication with the Hyperwallet platform is accomplished through the usage of JSON Web Tokens. At
+instantiation an HyperwalletAuthenticationTokenProvider is set as a member variable to provide
+the Hyperwallet class with an authentication token upon request.
A single instance of the Hyperwallet class is maintained. Resetting the current instance by calling
+setup(_: HyperwalletAuthenticationTokenProvider) is critical when switching between authenticated Users.
+Failure to do so will result in incorrect access and incorrect modifications to User data.
+
+
Authentication with the Hyperwallet platform is accomplished through the usage of JSON Web Tokens. At
+instantiation an HyperwalletAuthenticationTokenProvider is set as a member variable to provide
+the Hyperwallet class with an authentication token upon request.
Retrieves a configuration if one exists - else using the authentication token from the provider,
+it tries to fetch the configuration object again and returns it else error
Returns the HyperwalletUser for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler) or nil
+if none exists.
+
+
The completion: @escaping (HyperwalletUser?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletUser) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletBankAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletPaperCheck for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Creates a HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletTransfer for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransfer?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletTransfer) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Deactivates the HyperwalletBankAccount linked to the transfer method token specified. The
+HyperwalletBankAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
+
+
This function will request a new authentication token via HyperwalletAuthenticationTokenProvider`
+if the current one is expired or is about to expire.
Deactivates the HyperwalletPaperCheck linked to the transfer method token specified. The
+HyperwalletPaperCheck being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
+
+
This function will request a new authentication token via HyperwalletAuthenticationTokenProvider`
+if the current one is expired or is about to expire.
Deactivates the HyperwalletBankCard linked to the transfer method token specified. The
+HyperwalletBankCard being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Deactivates the HyperwalletPayPalAccount linked to the transfer method token specified. The
+HyperwalletPayPalAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Deactivates the HyperwalletVenmoAccount linked to the transfer method token specified. The
+HyperwalletVenmoAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Schedules the HyperwalletTransfer linked to the transfer method token specified.
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletBankAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPaperCheck linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletBankCard linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPayPalAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPrepaidCard linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPrepaidCard?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletPrepaidCard) or
+error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletTransfer linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletTransfer?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletTransfer) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletVenmoAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the list of HyperwalletBankAccounts for the User associated with the authentication token
+returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankAccounts will be based on the criteria specified within
+the HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied:
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Bank Account
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBankAccount>?, HyperwalletErrorType?) -> Void that
+is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the list of HyperwalletPaperChecks for the User associated with the authentication token
+returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletPaperChecks will be based on the criteria specified within
+the HyperwalletPaperCheckQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied:
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Paper Check
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletPaperCheck>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankCard will be based on the criteria specified within the
+HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Bank Card
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBankCard>?, HyperwalletErrorType?) -> Void that is
+passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
The completion: @escaping (HyperwalletPageList<HyperwalletPayPalAccount>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the HyperwalletTransferMethod (Bank Account, Bank Card, PayPay Account, Prepaid Card, Paper Checks)
+for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankCard will be based on the criteria specified within the
+HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: All
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletTransferMethod>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the HyperwalletPrepaidCard
+for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletPrepaidCard will be based on the criteria specified within the
+HyperwalletPrepaidCardQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletPrepaidCard>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletVenmoAccount will be based on the criteria specified within the
+HyperwalletVenmoQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletVenmoAccount>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the list of receipts for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletReceipt will be based on the criteria specified within the
+HyperwalletReceiptQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Currency: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletReceipt>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
The filtering of HyperwalletReceipt will be based on the criteria specified within the
+HyperwalletReceiptQueryParam object. CreatedAfter needs to be provided to get the receipts.
+Receipts are returned sorted in ascending order of creation date
+
+
+
Created Before: N/A
+
Created After: “Some Date”
+
Currency: All
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletReceipt>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the list of transfers for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletTransfer will be based on the criteria specified within the
+HyperwalletTransferQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
clientTransferId: N/A
+
destinationToken: N/A
+
sourceToken: N/A
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletTransfer>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the transfer method configuration field set for the User that is associated with the authentication
+token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationField?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationField) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method update configuration fields set for the User that is associated with
+the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodUpdateConfigurationField?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodUpdateConfigurationField) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method configuration key set for the User that is associated
+with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationKey?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationKey) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method types, processing times, and fees for the User that is associated
+with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationKey?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationKey) or
+error(HyperwalletErrorType) from processing the
+request.
Updates the HyperwalletBankAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Updates the HyperwalletPaperCheck for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Updates the HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
To identify the HyperwalletBankCard that is going to be updated, the transfer method token must be
+set as part of the HyperwalletBankCard object passed in.
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType) from
+processing the request.
Updates the HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Updates the HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the list of balances for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletBalance will be based on the criteria specified within the
+HyperwalletBalanceQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Currency: All
+
Sort By: currency
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBalance>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the list of prepaid card balances for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletBalance will be based on the criteria specified within the
+HyperwalletPrepaidCardBalanceQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Sort By: currency
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBalance>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Sets the bank account number, IBAN or equivalent. If you are providing an IBAN, the first two
+letters of the IBAN must match the transferMethodCountry
The card package name or identifier. You must provide an exact cardPackage value
+ that has been been configured for the program or leave it blank.
+ If left blank, the default card package will be automatically selected.
The datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone
+used is UTC, therefore no time offset is returned.
The contact email address for the user account. This must be unique for your program, so you cannot have two
+users belonging to the same program with the same email address.
Sets the datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the
+timezone used is UTC, therefore no time offset is returned.
+
+
+
+
Declaration
+
+
Swift
+
publicfunccreatedOn(_createdOn:String)->Builder
+
+
+
+
+
Parameters
+
+
+
+
+
+ createdOn
+
+
+
+
+
The datetime the user account was created on in ISO 8601
+ format (YYYY-MM-DDThh:mm:ss). Note that the timezone used is UTC, therefore no time
+ offset is returned.
+
+
+
+
+
+
+
+
Return Value
+
a self reference of HyperwalletUser.Builder instance.
Sets the contact email address for the user account. This must be unique for your program, so you cannot
+have two users belonging to the same program with the same email address.
+
+
+
+
Declaration
+
+
Swift
+
publicfuncemail(_email:String)->Builder
+
+
+
+
+
Parameters
+
+
+
+
+
+ driversLicenseId
+
+
+
+
+
the contact email address for the user account. This must be unique for your
+ program, so you cannot have two users belonging to the same program with the
+ same email address.
+
+
+
+
+
+
+
+
Return Value
+
a self reference of HyperwalletUser.Builder instance.
The datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss).
+Note that the timezone used is UTC, therefore no time offset is returned.
The contact email address for the user account. This must be unique for your program,
+so you cannot have two users belonging to the same program with the same email address.
The number of records to skip. If no filters are applied, records will be skipped from the beginning
+(based on default sort criteria). Default value is 0. Range is from 0 to {n-1} where n = number of
+matching records for the query.
The HyperwalletAuthenticationTokenProvider protocol provides the Hyperwallet iOS Core SDK with an
+abstraction to retrieve an authentication token. An authentication token is a JSON Web Token that will be used
+to authenticate the User to the Hyperwallet platform.
+
+
Implementations of HyperwalletAuthenticationTokenProvider are expected to be non-blocking and thread safe.
The HyperwalletTransferMethodUpdateConfigurationField protocol for processing the update transfer method
+configuration field result from the Hyperwallet platform.
The HyperwalletAuthenticationTokenProvider protocol provides the Hyperwallet iOS Core SDK with an
+abstraction to retrieve an authentication token. An authentication token is a JSON Web Token that will be used
+to authenticate the User to the Hyperwallet platform.
+
+
Implementations of HyperwalletAuthenticationTokenProvider are expected to be non-blocking and thread safe.
A callback interface to handle the submission of an authentication token or an error message in case of failure.
+
+
The authentication token is a JSON web token that contains as part of its claim set the principal that will
+be interacting with the Hyperwallet platform.
+
+
Authentication token will be used until it expires.
Invoked when the Hyperwallet iOS Core SDK requires an authentication token.
+
+
Implementations of this function are expected to call the
+HyperwalletAuthenticationTokenProvider.CompletionHandler(String, nil) method when an authentication token is
+retrieved and the HyperwalletAuthenticationTokenProvider.CompletionHandler(nil, AuthenticationErrorType)
+when an authentication token is not retrieved.
The HyperwalletTransferMethodUpdateConfigurationField protocol for processing the update transfer method
+configuration field result from the Hyperwallet platform.
The HyperwalletTransferMethodConfigurationFieldQuery struct defines and builds a query to retrieve the fields
+required to create a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check)
+with the Hyperwallet platform.
The ‘HyperwalletTransferMethodConfigurationKeysQuery’ struct defines and builds a query to retrieve the key set
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
+
+
In addition to the key set, the query will also retrieve the processing time and fees associated with each
+country, currency and transfer method type tuple.
The ‘HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery’ struct defines
+and builds a query to retrieve the processing time and fees associated with each country, currency
+and transfer method type tuple.
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
The HyperwalletTransferMethodUpdateConfigurationFieldQuery
+struct defines and builds a query to retrieve the fields
+required to update a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check and Venmo)
+with the Hyperwallet platform.
The HyperwalletTransferMethodConfigurationFieldQuery struct defines and builds a query to retrieve the fields
+required to create a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check)
+with the Hyperwallet platform.
The ‘HyperwalletTransferMethodConfigurationKeysQuery’ struct defines and builds a query to retrieve the key set
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
+
+
In addition to the key set, the query will also retrieve the processing time and fees associated with each
+country, currency and transfer method type tuple.
The ‘HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery’ struct defines
+and builds a query to retrieve the processing time and fees associated with each country, currency
+and transfer method type tuple.
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
The HyperwalletTransferMethodUpdateConfigurationFieldQuery
+struct defines and builds a query to retrieve the fields
+required to update a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check and Venmo)
+with the Hyperwallet platform.
A single instance of the Hyperwallet class is maintained. Resetting the current instance by calling
+setup(_: HyperwalletAuthenticationTokenProvider) is critical when switching between authenticated Users.
+Failure to do so will result in incorrect access and incorrect modifications to User data.
+
+
Authentication with the Hyperwallet platform is accomplished through the usage of JSON Web Tokens. At
+instantiation an HyperwalletAuthenticationTokenProvider is set as a member variable to provide
+the Hyperwallet class with an authentication token upon request.
A single instance of the Hyperwallet class is maintained. Resetting the current instance by calling
+setup(_: HyperwalletAuthenticationTokenProvider) is critical when switching between authenticated Users.
+Failure to do so will result in incorrect access and incorrect modifications to User data.
+
+
Authentication with the Hyperwallet platform is accomplished through the usage of JSON Web Tokens. At
+instantiation an HyperwalletAuthenticationTokenProvider is set as a member variable to provide
+the Hyperwallet class with an authentication token upon request.
Retrieves a configuration if one exists - else using the authentication token from the provider,
+it tries to fetch the configuration object again and returns it else error
Returns the HyperwalletUser for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler) or nil
+if none exists.
+
+
The completion: @escaping (HyperwalletUser?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletUser) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletBankAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletPaperCheck for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Creates a HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletTransfer for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransfer?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletTransfer) or error(HyperwalletErrorType)
+from processing the request.
Creates a HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Deactivates the HyperwalletBankAccount linked to the transfer method token specified. The
+HyperwalletBankAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
+
+
This function will request a new authentication token via HyperwalletAuthenticationTokenProvider`
+if the current one is expired or is about to expire.
Deactivates the HyperwalletPaperCheck linked to the transfer method token specified. The
+HyperwalletPaperCheck being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
+
+
This function will request a new authentication token via HyperwalletAuthenticationTokenProvider`
+if the current one is expired or is about to expire.
Deactivates the HyperwalletBankCard linked to the transfer method token specified. The
+HyperwalletBankCard being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Deactivates the HyperwalletPayPalAccount linked to the transfer method token specified. The
+HyperwalletPayPalAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Deactivates the HyperwalletVenmoAccount linked to the transfer method token specified. The
+HyperwalletVenmoAccount being deactivated must belong to the User that is associated with the
+authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Schedules the HyperwalletTransfer linked to the transfer method token specified.
+
+
The completion: @escaping (HyperwalletStatusTransition?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletStatusTransition) or
+error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletBankAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPaperCheck linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletBankCard linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPayPalAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletPrepaidCard linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletPrepaidCard?, HyperwalletErrorType?) -> Void that is passed in to
+this method invocation will receive the successful response(HyperwalletPrepaidCard) or
+error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletTransfer linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletTransfer?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletTransfer) or error(HyperwalletErrorType)
+from processing the request.
Returns the HyperwalletVenmoAccount linked to the transfer method token specified, or nil if none exists.
+
+
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the list of HyperwalletBankAccounts for the User associated with the authentication token
+returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankAccounts will be based on the criteria specified within
+the HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied:
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Bank Account
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBankAccount>?, HyperwalletErrorType?) -> Void that
+is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the list of HyperwalletPaperChecks for the User associated with the authentication token
+returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletPaperChecks will be based on the criteria specified within
+the HyperwalletPaperCheckQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied:
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Paper Check
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletPaperCheck>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankCard will be based on the criteria specified within the
+HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: Bank Card
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBankCard>?, HyperwalletErrorType?) -> Void that is
+passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the request.
Returns the HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
The completion: @escaping (HyperwalletPageList<HyperwalletPayPalAccount>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the HyperwalletTransferMethod (Bank Account, Bank Card, PayPay Account, Prepaid Card, Paper Checks)
+for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletBankCard will be based on the criteria specified within the
+HyperwalletBankAccountQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Type: All
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletTransferMethod>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the HyperwalletPrepaidCard
+for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletPrepaidCard will be based on the criteria specified within the
+HyperwalletPrepaidCardQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletPrepaidCard>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler),
+or nil if non exist.
+
+
The ordering and filtering of HyperwalletVenmoAccount will be based on the criteria specified within the
+HyperwalletVenmoQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Status: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletVenmoAccount>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing the
+request.
Returns the list of receipts for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletReceipt will be based on the criteria specified within the
+HyperwalletReceiptQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
Currency: All
+
Sort By: Created On
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletReceipt>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
The filtering of HyperwalletReceipt will be based on the criteria specified within the
+HyperwalletReceiptQueryParam object. CreatedAfter needs to be provided to get the receipts.
+Receipts are returned sorted in ascending order of creation date
+
+
+
Created Before: N/A
+
Created After: “Some Date”
+
Currency: All
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletReceipt>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the list of transfers for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletTransfer will be based on the criteria specified within the
+HyperwalletTransferQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Created Before: N/A
+
Created After: N/A
+
clientTransferId: N/A
+
destinationToken: N/A
+
sourceToken: N/A
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletTransfer>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the transfer method configuration field set for the User that is associated with the authentication
+token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationField?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationField) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method update configuration fields set for the User that is associated with
+the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodUpdateConfigurationField?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodUpdateConfigurationField) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method configuration key set for the User that is associated
+with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationKey?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationKey) or error(HyperwalletErrorType) from processing the
+request.
Returns the transfer method types, processing times, and fees for the User that is associated
+with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
The completion: @escaping (HyperwalletTransferMethodConfigurationKey?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletTransferMethodConfigurationKey) or
+error(HyperwalletErrorType) from processing the
+request.
Updates the HyperwalletBankAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletBankAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankAccount) or error(HyperwalletErrorType)
+from processing the request.
Updates the HyperwalletPaperCheck for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletPaperCheck?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful response(HyperwalletPaperCheck)
+or error(HyperwalletErrorType) from processing the request.
Updates the HyperwalletBankCard for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
+
+
To identify the HyperwalletBankCard that is going to be updated, the transfer method token must be
+set as part of the HyperwalletBankCard object passed in.
+
+
The completion: @escaping (HyperwalletBankCard?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletBankCard) or error(HyperwalletErrorType) from
+processing the request.
Updates the HyperwalletPayPalAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletPayPalAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletPayPalAccount) or error(HyperwalletErrorType)
+from processing the request.
Updates the HyperwalletVenmoAccount for the User associated with the authentication token returned from
+HyperwalletAuthenticationTokenProvider.retrieveAuthenticationToken(_ : @escaping CompletionHandler).
The completion: @escaping (HyperwalletVenmoAccount?, HyperwalletErrorType?) -> Void that is passed in to this
+method invocation will receive the successful response(HyperwalletVenmoAccount) or error(HyperwalletErrorType)
+from processing the request.
Returns the list of balances for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletBalance will be based on the criteria specified within the
+HyperwalletBalanceQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Currency: All
+
Sort By: currency
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBalance>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Returns the list of prepaid card balances for the User associated with the authentication token.
+
+
The ordering and filtering of HyperwalletBalance will be based on the criteria specified within the
+HyperwalletPrepaidCardBalanceQueryParam object, if it is not nil. Otherwise the default ordering and
+filtering will be applied.
+
+
+
Offset: 0
+
Limit: 10
+
Sort By: currency
+
+
+
The completion: @escaping (HyperwalletPageList<HyperwalletBalance>?, HyperwalletErrorType?) -> Void
+that is passed in to this method invocation will receive the successful
+response(HyperwalletPageList?) or error(HyperwalletErrorType) from processing
+the request.
Sets the bank account number, IBAN or equivalent. If you are providing an IBAN, the first two
+letters of the IBAN must match the transferMethodCountry
The card package name or identifier. You must provide an exact cardPackage value
+ that has been been configured for the program or leave it blank.
+ If left blank, the default card package will be automatically selected.
The datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone
+used is UTC, therefore no time offset is returned.
The contact email address for the user account. This must be unique for your program, so you cannot have two
+users belonging to the same program with the same email address.
Sets the datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the
+timezone used is UTC, therefore no time offset is returned.
+
+
+
+
Declaration
+
+
Swift
+
publicfunccreatedOn(_createdOn:String)->Builder
+
+
+
+
+
Parameters
+
+
+
+
+
+ createdOn
+
+
+
+
+
The datetime the user account was created on in ISO 8601
+ format (YYYY-MM-DDThh:mm:ss). Note that the timezone used is UTC, therefore no time
+ offset is returned.
+
+
+
+
+
+
+
+
Return Value
+
a self reference of HyperwalletUser.Builder instance.
Sets the contact email address for the user account. This must be unique for your program, so you cannot
+have two users belonging to the same program with the same email address.
+
+
+
+
Declaration
+
+
Swift
+
publicfuncemail(_email:String)->Builder
+
+
+
+
+
Parameters
+
+
+
+
+
+ driversLicenseId
+
+
+
+
+
the contact email address for the user account. This must be unique for your
+ program, so you cannot have two users belonging to the same program with the
+ same email address.
+
+
+
+
+
+
+
+
Return Value
+
a self reference of HyperwalletUser.Builder instance.
The datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss).
+Note that the timezone used is UTC, therefore no time offset is returned.
The contact email address for the user account. This must be unique for your program,
+so you cannot have two users belonging to the same program with the same email address.
The number of records to skip. If no filters are applied, records will be skipped from the beginning
+(based on default sort criteria). Default value is 0. Range is from 0 to {n-1} where n = number of
+matching records for the query.
The HyperwalletAuthenticationTokenProvider protocol provides the Hyperwallet iOS Core SDK with an
+abstraction to retrieve an authentication token. An authentication token is a JSON Web Token that will be used
+to authenticate the User to the Hyperwallet platform.
+
+
Implementations of HyperwalletAuthenticationTokenProvider are expected to be non-blocking and thread safe.
The HyperwalletTransferMethodUpdateConfigurationField protocol for processing the update transfer method
+configuration field result from the Hyperwallet platform.
The HyperwalletAuthenticationTokenProvider protocol provides the Hyperwallet iOS Core SDK with an
+abstraction to retrieve an authentication token. An authentication token is a JSON Web Token that will be used
+to authenticate the User to the Hyperwallet platform.
+
+
Implementations of HyperwalletAuthenticationTokenProvider are expected to be non-blocking and thread safe.
A callback interface to handle the submission of an authentication token or an error message in case of failure.
+
+
The authentication token is a JSON web token that contains as part of its claim set the principal that will
+be interacting with the Hyperwallet platform.
+
+
Authentication token will be used until it expires.
Invoked when the Hyperwallet iOS Core SDK requires an authentication token.
+
+
Implementations of this function are expected to call the
+HyperwalletAuthenticationTokenProvider.CompletionHandler(String, nil) method when an authentication token is
+retrieved and the HyperwalletAuthenticationTokenProvider.CompletionHandler(nil, AuthenticationErrorType)
+when an authentication token is not retrieved.
The HyperwalletTransferMethodUpdateConfigurationField protocol for processing the update transfer method
+configuration field result from the Hyperwallet platform.
The HyperwalletTransferMethodConfigurationFieldQuery struct defines and builds a query to retrieve the fields
+required to create a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check)
+with the Hyperwallet platform.
The ‘HyperwalletTransferMethodConfigurationKeysQuery’ struct defines and builds a query to retrieve the key set
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
+
+
In addition to the key set, the query will also retrieve the processing time and fees associated with each
+country, currency and transfer method type tuple.
The ‘HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery’ struct defines
+and builds a query to retrieve the processing time and fees associated with each country, currency
+and transfer method type tuple.
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
The HyperwalletTransferMethodUpdateConfigurationFieldQuery
+struct defines and builds a query to retrieve the fields
+required to update a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check and Venmo)
+with the Hyperwallet platform.
The HyperwalletTransferMethodConfigurationFieldQuery struct defines and builds a query to retrieve the fields
+required to create a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check)
+with the Hyperwallet platform.
The ‘HyperwalletTransferMethodConfigurationKeysQuery’ struct defines and builds a query to retrieve the key set
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
+
+
In addition to the key set, the query will also retrieve the processing time and fees associated with each
+country, currency and transfer method type tuple.
The ‘HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery’ struct defines
+and builds a query to retrieve the processing time and fees associated with each country, currency
+and transfer method type tuple.
+that is required to construct a HyperwalletTransferMethodConfigurationFieldQuery.
The HyperwalletTransferMethodUpdateConfigurationFieldQuery
+struct defines and builds a query to retrieve the fields
+required to update a transfer method (Bank Account, Bank Card, PayPal Account, Prepaid Card, Paper Check and Venmo)
+with the Hyperwallet platform.
NOTE: This is a beta product available for use in your mobile app. If you are interested in using this product, please notify your Relationship Manager and / or Project Manager to support you during the integration process.
+
+
Welcome to Hyperwallet’s iOS SDK. This library will help you create transfer methods in your iOS app, such as bank account, PayPal account, etc. See our iOS Integration Guide to get started!
+
+
Note that this SDK is geared towards those who only require backend data, which means you will have to build your own UI.
+
+
We also provide an out-of-the-box Hyperwallet iOS UI SDK for you if you decide not to build your own UI.
+
Prerequisites
+
+
+
A Hyperwallet merchant account
+
Set Up your server to manage the user’s authentication process on the Hyperwallet platform. See the Authentication section for more information.
After you’re done installing the SDK, you need to initialize an instance in order to utilize core SDK functions. Also, you need to provide a HyperwalletAuthenticationTokenProvider object to retrieve an authentication token.
Your server side should be able to send a POST request to Hyperwallet endpoint /rest/v3/users/{user-token}/authentication-token to retrieve an authentication token.
+Then, you need to provide a class (an authentication provider) which implements HyperwalletAuthenticationTokenProvider to retrieve an authentication token from your server.
+
+
An example implementation using the URLRequest from Swift Foundation :
letpayPalAccount=HyperwalletPayPalAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.createPayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account creation
+})
+
+
Get PayPal Account
+
Hyperwallet.shared.getPayPalAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPayPalAccount? in this case) will contain information about the user’s PayPal account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update PayPal Account
+
letpayPalAccount=HyperwalletPayPalAccount.Builder(token:"trm-12345")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.updatePayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account updating
+})
+
+
Deactivate PayPal Account
+
Hyperwallet.shared.deactivatePayPalAccount(transferMethodToken:"trm-12345",notes:"deactivate PayPal account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account deactivation
+})
+
+
List PayPal Account
+
letpayPalQueryParam=HyperwalletPayPalAccountQueryParam()
+payPalQueryParam.status=HyperwalletPayPalAccountQueryParam.QueryStatus.activated.rawValue
+payPalQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPayPalAccounts(queryParam:payPalQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPayPalAccount>? in this case) will contain information about or nil if not exist.
+ ifletpayPalAccounts=result?.data{
+ forpayPalAccountinpayPalAccounts{
+ print(payPalAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.createVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account creation
+})
+
+
Get Venmo Account
+
Hyperwallet.shared.getVenmoAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletVenmoAccount? in this case) will contain information about the user’s Venmo account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(token:"trm-12345")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.updateVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account updating
+})
+
+
Deactivate Venmo Account
+
Hyperwallet.shared.deactivateVenmoAccount(transferMethodToken:"trm-12345",notes:"deactivate Venmo account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account deactivation
+})
+
+
List Venmo Account
+
letvenmoQueryParam=HyperwalletVenmoQueryParam()
+venmoQueryParam.status=HyperwalletVenmoQueryParam.QueryStatus.activated.rawValue
+venmoQueryParam.sortBy=HyperwalletVenmoQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listVenmoAccounts(queryParam:venmoQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletVenmoAccount>? in this case) will contain information about or nil if not exist.
+ ifletvenmoAccounts=result?.data{
+ forvenmoAccountinvenmoAccounts{
+ print(venmoAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Bank Account
+
letbankAccount=HyperwalletBankAccount.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.bankAccountId("12345")
+.branchId("123456")
+.bankAccountPurpose(.checking)
+.build()
+
+Hyperwallet.shared.createBankAccount(account:bankAccount,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletBankAccount in this case) payload will contain information about the account created
+ print(result)
+})
+
+
Get Bank Account
+
Hyperwallet.shared.getBankAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Account
+
letbankAccount=HyperwalletBankAccount
+.Builder(token:"12345")
+.branchId("026009593")
+.build()
+
+Hyperwallet.shared.updateBankAccount(account:bankAccount,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankAccount in this case) payload will contain information about the account updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account updating
+})
+
+
Deactivate Bank Account
+
Hyperwallet.shared.deactivateBankAccount(transferMethodToken:"trm-12345",notes:"deactivate bank account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account deactivation
+})
+
+
List Bank Account
+
letbankAccountQueryParam=HyperwalletBankAccountQueryParam()
+bankAccountQueryParam.status=HyperwalletBankAccountQueryParam.QueryStatus.activated.rawValue
+bankAccountQueryParam.sortBy=HyperwalletBankAccountQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankAccounts(queryParam:bankAccountQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankAccount>? in this case) will contain information about or nil if not exist.
+ ifletbankAccounts=result?.data{
+ forbankAccountinbankAccounts{
+ print(bankAccount.token??"")
+ }
+ }
+}
+
+
Create Paper Check
+
letpaperCheck=HyperwalletPaperCheck.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.createPaperCheck(account:paperCheck,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check created
+ print(result)
+})
+
+
Get Paper Check
+
Hyperwallet.shared.getPaperCheck(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPaperCheck? in this case) will contain information about the user’s paper check or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Paper Check
+
letpaperCheck=HyperwalletPaperCheck
+.Builder(token:"12345")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.updatePaperCheck(account:paperCheck,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure while updating
+})
+
+
Deactivate Paper Check
+
Hyperwallet.shared.deactivatePaperCheck(transferMethodToken:"trm-12345",notes:"deactivate paper check",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Paper Check
+
letpaperCheckQueryParam=HyperwalletPaperCheckQueryParam()
+paperCheckQueryParam.status=HyperwalletPaperCheckQueryParam.QueryStatus.activated.rawValue
+paperCheckQueryParam.sortBy=HyperwalletPaperCheckQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPaperChecks(queryParam:paperCheckQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPaperCheck>? in this case) will contain information about or nil if not exist.
+ ifletpaperChecks=result?.data{
+ forpaperCheckinpaperChecks{
+ print(paperCheck.token??"")
+ }
+ }
+}
+
+
Create Bank Card
+
letbankCard=HyperwalletBankCard.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.cardNumber("1234123412341234")
+.dateOfExpiry("2022-12")
+.cvv("123")
+.build()
+
+Hyperwallet.shared.createBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card creation
+})
+
+
Get Bank Card
+
Hyperwallet.shared.getBankCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Card
+
letbankCard=HyperwalletBankCard
+.Builder(token:"trm-12345")
+.dateOfExpiry("2022-12")
+.build()
+
+Hyperwallet.shared.updateBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card updating
+})
+
+
Deactivate Bank Card
+
Hyperwallet.shared.deactivateBankCard(transferMethodToken:"trm-12345",notes:"deactivate bank card",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card deactivation
+})
+
+
List Bank Card
+
letbankCardQueryParam=HyperwalletBankCardQueryParam()
+bankCardQueryParam.status=HyperwalletBankCardQueryParam.QueryStatus.activated.rawValue
+bankCardQueryParam.sortBy=HyperwalletBankCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankCards(queryParam:bankCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankCard>? in this case) will contain information about or nil if not exist.
+ ifletbankCards=result?.data{
+ forbankCardinbankCards{
+ print(bankCard.token??"")
+ }
+ }
+}
+
+
Get Prepaid Card
+
Hyperwallet.shared.getPrepaidCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPrepaidCard? in this case) will contain information about the user’s prepaid card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Prepaid Cards
+
letprepaidCardQueryParam=HyperwalletPrepaidCardQueryParam()
+prepaidCardQueryParam.status=HyperwalletPrepaidCardQueryParam.QueryStatus.activated.rawValue
+prepaidCardQueryParam.sortBy=HyperwalletPrepaidCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPrepaidCards(queryParam:prepaidCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPrepaidCard>? in this case) will contain information about or nil if not exist.
+ ifletprepaidCards=result?.data{
+ forprepaidCardinprepaidCards{
+ print(prepaidCard.token)
+ }
+ }
+}
+
+
List Prepaid Card Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2016-12-01T00:00:00")
+
+Hyperwallet.shared.listPrepaidCardReceipts(prepaidCardToken:prepaidCardToken,
+ queryParam:receiptQueryParam,
+ completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List User Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2018-12-01T00:00:00")
+receiptQueryParam.currency="USD"
+receiptQueryParam.sortBy=HyperwalletReceiptQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserReceipts(queryParam:receiptQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List Transfer Methods
+
lettransferMethodQueryParam=HyperwalletTransferMethodQueryParam()
+transferMethodQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listTransferMethods(queryParam:transferMethodQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransferMethod>? in this case) will contain information about or nil if not exist.
+ iflettransferMethods=result?.data{
+ fortransferMethodintransferMethods{
+ print(transferMethod.token??"")
+ }
+ }
+}
+
+
Create Transfer
+
lettransfer=HyperwalletTransfer.Builder(clientTransferId:"6712348070812",
+ sourceToken:"source-token",
+ destinationToken:"destination-token")
+ .sourceAmount("100")
+ .sourceCurrency("CAD")
+ .destinationAmount("62.29")
+ .destinationCurrency("USD")
+ .memo("TransferClientId56387")
+ .notes("Partial-Balance Transfer")
+ .build()
+
+Hyperwallet.shared.createTransfer(transfer:transfer,completion:{(result,error)in
+ //Code to handle successful response or error
+ //On successfull creation, response (HyperwalletTransfer in this case) will contain information about the transfer
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Schedule Transfer
+
Hyperwallet.shared.scheduleTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ //Code to handle successful response or error
+ // On successful scheduling, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Get Transfer
+
Hyperwallet.shared.getTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ // On success, response (HyperwalletTransfer? in this case) will contain information about the transfer or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Transfers
+
Hyperwallet.shared.listTransfers{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransfer>? in this case) will contain information about or nil if not exist.
+ iflettransfers=result?.data{
+ fortransferintransfers{
+ print(transfer.token??"")
+ }
+ }
+})
+
+
List User Balances
+
letbalanceQueryParam=HyperwalletBalanceQueryParam()
+balanceQueryParam.currency="USD"
+balanceQueryParam.sortBy=HyperwalletBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserBalances(queryParam:balanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
List Prepaid Card Balances
+
letprepaidCardBalanceQueryParam=HyperwalletPrepaidCardBalanceQueryParam()
+prepaidCardBalanceQueryParam.sortBy=HyperwalletPrepaidCardBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listPrepaidCardBalances(prepaidCardToken:"trm-1234",queryParam:prepaidCardBalanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
Transfer Method Configurations
+
Get countries, currencies
+
letkeysQuery=HyperwalletTransferMethodConfigurationKeysQuery()
+
+Hyperwallet.shared.retrieveTransferMethodConfigurationKeys(request:keysQuery){(result,error)in
+
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+ // Get countries
+ letcountries=result.countries()
+
+ // Get currencies based on the first available country code
+ varcurrencies:[HyperwalletCurrency]?
+ ifletcountries=result.countries(),!countries.isEmpty{
+ currencies=result.currencies(from:countries.first!.code)
+ }
+
+ print(countries)
+ print(currencies)
+}
+
+
Get transfer method types, fees and processing times for Country and Currency
+
letcountry="CA"
+letcurrency="CAD"
+letkeysQuery=HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery(country:country,currency:currency)
+
+Hyperwallet
+ .shared
+ .retrieveTransferMethodTypesFeesAndProcessingTimes(request:keysQuery){(result,error)in
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+
+ // Get transfer method types based on the first country code and its first currency code
+ transferMethodTypes=result.transferMethodTypes(countryCode:country,currencyCode:currency)
+ print(transferMethodTypes)
+ print(transferMethodTypes?.first?.fees)
+ print(transferMethodTypes?.first?.processingTimes)
+}
+
NOTE: This is a beta product available for use in your mobile app. If you are interested in using this product, please notify your Relationship Manager and / or Project Manager to support you during the integration process.
+
+
Welcome to Hyperwallet’s iOS SDK. This library will help you create transfer methods in your iOS app, such as bank account, PayPal account, etc. See our iOS Integration Guide to get started!
+
+
Note that this SDK is geared towards those who only require backend data, which means you will have to build your own UI.
+
+
We also provide an out-of-the-box Hyperwallet iOS UI SDK for you if you decide not to build your own UI.
+
Prerequisites
+
+
+
A Hyperwallet merchant account
+
Set Up your server to manage the user’s authentication process on the Hyperwallet platform. See the Authentication section for more information.
After you’re done installing the SDK, you need to initialize an instance in order to utilize core SDK functions. Also, you need to provide a HyperwalletAuthenticationTokenProvider object to retrieve an authentication token.
Your server side should be able to send a POST request to Hyperwallet endpoint /rest/v3/users/{user-token}/authentication-token to retrieve an authentication token.
+Then, you need to provide a class (an authentication provider) which implements HyperwalletAuthenticationTokenProvider to retrieve an authentication token from your server.
+
+
An example implementation using the URLRequest from Swift Foundation :
letpayPalAccount=HyperwalletPayPalAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.createPayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account creation
+})
+
+
Get PayPal Account
+
Hyperwallet.shared.getPayPalAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPayPalAccount? in this case) will contain information about the user’s PayPal account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update PayPal Account
+
letpayPalAccount=HyperwalletPayPalAccount.Builder(token:"trm-12345")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.updatePayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account updating
+})
+
+
Deactivate PayPal Account
+
Hyperwallet.shared.deactivatePayPalAccount(transferMethodToken:"trm-12345",notes:"deactivate PayPal account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account deactivation
+})
+
+
List PayPal Account
+
letpayPalQueryParam=HyperwalletPayPalAccountQueryParam()
+payPalQueryParam.status=HyperwalletPayPalAccountQueryParam.QueryStatus.activated.rawValue
+payPalQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPayPalAccounts(queryParam:payPalQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPayPalAccount>? in this case) will contain information about or nil if not exist.
+ ifletpayPalAccounts=result?.data{
+ forpayPalAccountinpayPalAccounts{
+ print(payPalAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.createVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account creation
+})
+
+
Get Venmo Account
+
Hyperwallet.shared.getVenmoAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletVenmoAccount? in this case) will contain information about the user’s Venmo account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(token:"trm-12345")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.updateVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account updating
+})
+
+
Deactivate Venmo Account
+
Hyperwallet.shared.deactivateVenmoAccount(transferMethodToken:"trm-12345",notes:"deactivate Venmo account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account deactivation
+})
+
+
List Venmo Account
+
letvenmoQueryParam=HyperwalletVenmoQueryParam()
+venmoQueryParam.status=HyperwalletVenmoQueryParam.QueryStatus.activated.rawValue
+venmoQueryParam.sortBy=HyperwalletVenmoQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listVenmoAccounts(queryParam:venmoQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletVenmoAccount>? in this case) will contain information about or nil if not exist.
+ ifletvenmoAccounts=result?.data{
+ forvenmoAccountinvenmoAccounts{
+ print(venmoAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Bank Account
+
letbankAccount=HyperwalletBankAccount.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.bankAccountId("12345")
+.branchId("123456")
+.bankAccountPurpose(.checking)
+.build()
+
+Hyperwallet.shared.createBankAccount(account:bankAccount,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletBankAccount in this case) payload will contain information about the account created
+ print(result)
+})
+
+
Get Bank Account
+
Hyperwallet.shared.getBankAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Account
+
letbankAccount=HyperwalletBankAccount
+.Builder(token:"12345")
+.branchId("026009593")
+.build()
+
+Hyperwallet.shared.updateBankAccount(account:bankAccount,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankAccount in this case) payload will contain information about the account updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account updating
+})
+
+
Deactivate Bank Account
+
Hyperwallet.shared.deactivateBankAccount(transferMethodToken:"trm-12345",notes:"deactivate bank account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account deactivation
+})
+
+
List Bank Account
+
letbankAccountQueryParam=HyperwalletBankAccountQueryParam()
+bankAccountQueryParam.status=HyperwalletBankAccountQueryParam.QueryStatus.activated.rawValue
+bankAccountQueryParam.sortBy=HyperwalletBankAccountQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankAccounts(queryParam:bankAccountQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankAccount>? in this case) will contain information about or nil if not exist.
+ ifletbankAccounts=result?.data{
+ forbankAccountinbankAccounts{
+ print(bankAccount.token??"")
+ }
+ }
+}
+
+
Create Paper Check
+
letpaperCheck=HyperwalletPaperCheck.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.createPaperCheck(account:paperCheck,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check created
+ print(result)
+})
+
+
Get Paper Check
+
Hyperwallet.shared.getPaperCheck(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPaperCheck? in this case) will contain information about the user’s paper check or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Paper Check
+
letpaperCheck=HyperwalletPaperCheck
+.Builder(token:"12345")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.updatePaperCheck(account:paperCheck,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure while updating
+})
+
+
Deactivate Paper Check
+
Hyperwallet.shared.deactivatePaperCheck(transferMethodToken:"trm-12345",notes:"deactivate paper check",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Paper Check
+
letpaperCheckQueryParam=HyperwalletPaperCheckQueryParam()
+paperCheckQueryParam.status=HyperwalletPaperCheckQueryParam.QueryStatus.activated.rawValue
+paperCheckQueryParam.sortBy=HyperwalletPaperCheckQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPaperChecks(queryParam:paperCheckQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPaperCheck>? in this case) will contain information about or nil if not exist.
+ ifletpaperChecks=result?.data{
+ forpaperCheckinpaperChecks{
+ print(paperCheck.token??"")
+ }
+ }
+}
+
+
Create Bank Card
+
letbankCard=HyperwalletBankCard.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.cardNumber("1234123412341234")
+.dateOfExpiry("2022-12")
+.cvv("123")
+.build()
+
+Hyperwallet.shared.createBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card creation
+})
+
+
Get Bank Card
+
Hyperwallet.shared.getBankCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Card
+
letbankCard=HyperwalletBankCard
+.Builder(token:"trm-12345")
+.dateOfExpiry("2022-12")
+.build()
+
+Hyperwallet.shared.updateBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card updating
+})
+
+
Deactivate Bank Card
+
Hyperwallet.shared.deactivateBankCard(transferMethodToken:"trm-12345",notes:"deactivate bank card",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card deactivation
+})
+
+
List Bank Card
+
letbankCardQueryParam=HyperwalletBankCardQueryParam()
+bankCardQueryParam.status=HyperwalletBankCardQueryParam.QueryStatus.activated.rawValue
+bankCardQueryParam.sortBy=HyperwalletBankCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankCards(queryParam:bankCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankCard>? in this case) will contain information about or nil if not exist.
+ ifletbankCards=result?.data{
+ forbankCardinbankCards{
+ print(bankCard.token??"")
+ }
+ }
+}
+
+
Get Prepaid Card
+
Hyperwallet.shared.getPrepaidCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPrepaidCard? in this case) will contain information about the user’s prepaid card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Prepaid Cards
+
letprepaidCardQueryParam=HyperwalletPrepaidCardQueryParam()
+prepaidCardQueryParam.status=HyperwalletPrepaidCardQueryParam.QueryStatus.activated.rawValue
+prepaidCardQueryParam.sortBy=HyperwalletPrepaidCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPrepaidCards(queryParam:prepaidCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPrepaidCard>? in this case) will contain information about or nil if not exist.
+ ifletprepaidCards=result?.data{
+ forprepaidCardinprepaidCards{
+ print(prepaidCard.token)
+ }
+ }
+}
+
+
List Prepaid Card Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2016-12-01T00:00:00")
+
+Hyperwallet.shared.listPrepaidCardReceipts(prepaidCardToken:prepaidCardToken,
+ queryParam:receiptQueryParam,
+ completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List User Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2018-12-01T00:00:00")
+receiptQueryParam.currency="USD"
+receiptQueryParam.sortBy=HyperwalletReceiptQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserReceipts(queryParam:receiptQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List Transfer Methods
+
lettransferMethodQueryParam=HyperwalletTransferMethodQueryParam()
+transferMethodQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listTransferMethods(queryParam:transferMethodQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransferMethod>? in this case) will contain information about or nil if not exist.
+ iflettransferMethods=result?.data{
+ fortransferMethodintransferMethods{
+ print(transferMethod.token??"")
+ }
+ }
+}
+
+
Create Transfer
+
lettransfer=HyperwalletTransfer.Builder(clientTransferId:"6712348070812",
+ sourceToken:"source-token",
+ destinationToken:"destination-token")
+ .sourceAmount("100")
+ .sourceCurrency("CAD")
+ .destinationAmount("62.29")
+ .destinationCurrency("USD")
+ .memo("TransferClientId56387")
+ .notes("Partial-Balance Transfer")
+ .build()
+
+Hyperwallet.shared.createTransfer(transfer:transfer,completion:{(result,error)in
+ //Code to handle successful response or error
+ //On successfull creation, response (HyperwalletTransfer in this case) will contain information about the transfer
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Schedule Transfer
+
Hyperwallet.shared.scheduleTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ //Code to handle successful response or error
+ // On successful scheduling, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Get Transfer
+
Hyperwallet.shared.getTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ // On success, response (HyperwalletTransfer? in this case) will contain information about the transfer or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Transfers
+
Hyperwallet.shared.listTransfers{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransfer>? in this case) will contain information about or nil if not exist.
+ iflettransfers=result?.data{
+ fortransferintransfers{
+ print(transfer.token??"")
+ }
+ }
+})
+
+
List User Balances
+
letbalanceQueryParam=HyperwalletBalanceQueryParam()
+balanceQueryParam.currency="USD"
+balanceQueryParam.sortBy=HyperwalletBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserBalances(queryParam:balanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
List Prepaid Card Balances
+
letprepaidCardBalanceQueryParam=HyperwalletPrepaidCardBalanceQueryParam()
+prepaidCardBalanceQueryParam.sortBy=HyperwalletPrepaidCardBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listPrepaidCardBalances(prepaidCardToken:"trm-1234",queryParam:prepaidCardBalanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
Transfer Method Configurations
+
Get countries, currencies
+
letkeysQuery=HyperwalletTransferMethodConfigurationKeysQuery()
+
+Hyperwallet.shared.retrieveTransferMethodConfigurationKeys(request:keysQuery){(result,error)in
+
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+ // Get countries
+ letcountries=result.countries()
+
+ // Get currencies based on the first available country code
+ varcurrencies:[HyperwalletCurrency]?
+ ifletcountries=result.countries(),!countries.isEmpty{
+ currencies=result.currencies(from:countries.first!.code)
+ }
+
+ print(countries)
+ print(currencies)
+}
+
+
Get transfer method types, fees and processing times for Country and Currency
+
letcountry="CA"
+letcurrency="CAD"
+letkeysQuery=HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery(country:country,currency:currency)
+
+Hyperwallet
+ .shared
+ .retrieveTransferMethodTypesFeesAndProcessingTimes(request:keysQuery){(result,error)in
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+
+ // Get transfer method types based on the first country code and its first currency code
+ transferMethodTypes=result.transferMethodTypes(countryCode:country,currencyCode:currency)
+ print(transferMethodTypes)
+ print(transferMethodTypes?.first?.fees)
+ print(transferMethodTypes?.first?.processingTimes)
+}
+
+
+
+
diff --git a/docsets/HyperwalletSDK.docset/Contents/Resources/Documents/search.json b/docsets/HyperwalletSDK.docset/Contents/Resources/Documents/search.json
new file mode 100644
index 00000000..532a155d
--- /dev/null
+++ b/docsets/HyperwalletSDK.docset/Contents/Resources/Documents/search.json
@@ -0,0 +1 @@
+{"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC06clientC2Id11sourceToken011destinationH0AESS_S2Stcfc":{"name":"init(clientTransferId:sourceToken:destinationToken:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletTransfer.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC17destinationAmountyAESSSgF":{"name":"destinationAmount(_:)","abstract":"\u003cp\u003eSets the transfer destination amount.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC19destinationCurrencyyAESSSgF":{"name":"destinationCurrency(_:)","abstract":"\u003cp\u003eSets the transfer destination currency.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC4memoyAESSSgF":{"name":"memo(_:)","abstract":"\u003cp\u003eSets the transfer memo.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC5notesyAESSSgF":{"name":"notes(_:)","abstract":"\u003cp\u003eSets the transfer notes.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC12sourceAmountyAESSSgF":{"name":"sourceAmount(_:)","abstract":"\u003cp\u003eSets the transfer source amount.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC14sourceCurrencyyAESSSgF":{"name":"sourceCurrency(_:)","abstract":"\u003cp\u003eSets the transfer source currency.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC5buildACyF":{"name":"build()","parent_name":"Builder"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9cancelledyA2EmF":{"name":"cancelled","abstract":"\u003cp\u003eThe transfer status is cancelled\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9completedyA2EmF":{"name":"completed","abstract":"\u003cp\u003eThe transfer status is completed\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO7expiredyA2EmF":{"name":"expired","abstract":"\u003cp\u003eThe transfer status is expired\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe transfer status is failed\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO10inProgressyA2EmF":{"name":"inProgress","abstract":"\u003cp\u003eThe transfer status is in Progress\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO6quotedyA2EmF":{"name":"quoted","abstract":"\u003cp\u003eThe transfer status is quoted\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO8returnedyA2EmF":{"name":"returned","abstract":"\u003cp\u003eThe transfer status is returned\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9scheduledyA2EmF":{"name":"scheduled","abstract":"\u003cp\u003eThe transfer status is scheduled\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO20verificationRequiredyA2EmF":{"name":"verificationRequired","abstract":"\u003cp\u003eThe verification required\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV06clientC2IdSSvp":{"name":"clientTransferId","abstract":"\u003cp\u003eA value that identifies the client transfer id.\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe created date\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV17destinationAmountSSSgvp":{"name":"destinationAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV19destinationCurrencySSSgvp":{"name":"destinationCurrency","abstract":"\u003cp\u003eThe destination currency\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV20destinationFeeAmountSSSgvp":{"name":"destinationFeeAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV16destinationTokenSSvp":{"name":"destinationToken","abstract":"\u003cp\u003eThe destination token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV9expiresOnSSSgvp":{"name":"expiresOn","abstract":"\u003cp\u003eThe expiresOn\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV16foreignExchangesSayAA0A15ForeignExchangeVGSgvp":{"name":"foreignExchanges","abstract":"\u003cp\u003eThe list of foreignExchanges\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV4memoSSSgvp":{"name":"memo","abstract":"\u003cp\u003eThe memo\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eThe notes to add\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV12sourceAmountSSSgvp":{"name":"sourceAmount","abstract":"\u003cp\u003eThe source amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV14sourceCurrencySSSgvp":{"name":"sourceCurrency","abstract":"\u003cp\u003eThe source currency\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV15sourceFeeAmountSSSgvp":{"name":"sourceFeeAmount","abstract":"\u003cp\u003eThe source fee\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV11sourceTokenSSvp":{"name":"sourceToken","abstract":"\u003cp\u003eThe source token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV6statusAC0aC6StatusOSgvp":{"name":"status","abstract":"\u003cp\u003eThe transfer status\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV5tokenSSSgvp":{"name":"token","abstract":"\u003cp\u003eThe token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html":{"name":"HyperwalletTransferStatus","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletTransferStatus\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV17destinationAmountSSSgvp":{"name":"destinationAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV19destinationCurrencySSSgvp":{"name":"destinationCurrency","abstract":"\u003cp\u003eThe destination currency\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV4rateSSSgvp":{"name":"rate","abstract":"\u003cp\u003eThe rate\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV12sourceAmountSSSgvp":{"name":"sourceAmount","abstract":"\u003cp\u003eThe source amount\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV14sourceCurrencySSSgvp":{"name":"sourceCurrency","abstract":"\u003cp\u003eThe source currency\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletStatusTransition/Builder.html#/s:14HyperwalletSDK0A16StatusTransitionV7BuilderC5notes10transitionAESSSg_AC0C0Otcfc":{"name":"init(notes:transition:)","abstract":"\u003cp\u003eInitialization of Builder\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletStatusTransition/Builder.html#/s:14HyperwalletSDK0A16StatusTransitionV7BuilderC5buildACyF":{"name":"build()","parent_name":"Builder"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eThe status is activate.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9cancelledyA2EmF":{"name":"cancelled","abstract":"\u003cp\u003eThe status is cancel.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9completedyA2EmF":{"name":"completed","abstract":"\u003cp\u003eThe status is complete.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O11deactivatedyA2EmF":{"name":"deactivated","abstract":"\u003cp\u003eThe status is deactivate.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O7expiredyA2EmF":{"name":"expired","abstract":"\u003cp\u003eThe status is expire.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe status is fail.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O10inProgressyA2EmF":{"name":"inProgress","abstract":"\u003cp\u003eThe status is in progress.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O7invalidyA2EmF":{"name":"invalid","abstract":"\u003cp\u003eThe status is invalid.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O12lostOrStolenyA2EmF":{"name":"lostOrStolen","abstract":"\u003cp\u003eThe status is lost or stolen.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O24pendingAccountActivationyA2EmF":{"name":"pendingAccountActivation","abstract":"\u003cp\u003eThe status is pending account activation.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O21pendingIdVerificationyA2EmF":{"name":"pendingIdVerification","abstract":"\u003cp\u003eThe status is pending identity verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O22pendingTaxVerificationyA2EmF":{"name":"pendingTaxVerification","abstract":"\u003cp\u003eThe status is pending tax verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O30pendingTransactionVerificationyA2EmF":{"name":"pendingTransactionVerification","abstract":"\u003cp\u003eThe status is pending transaction verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O27pendingTransferMethodActionyA2EmF":{"name":"pendingTransferMethodAction","abstract":"\u003cp\u003eThe status is pending transfer method action.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O6quotedyA2EmF":{"name":"quoted","abstract":"\u003cp\u003eThe status is quoted\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8recalledyA2EmF":{"name":"recalled","abstract":"\u003cp\u003eThe status is recall.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8returnedyA2EmF":{"name":"returned","abstract":"\u003cp\u003eThe status is return.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9scheduledyA2EmF":{"name":"scheduled","abstract":"\u003cp\u003eThe status is schedule.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9suspendedyA2EmF":{"name":"suspended","abstract":"\u003cp\u003eThe status is suspend.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O11unsuspendedyA2EmF":{"name":"unsuspended","abstract":"\u003cp\u003eThe status is not suspended.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O20verificationRequiredyA2EmF":{"name":"verificationRequired","abstract":"\u003cp\u003eThe status is verification required\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eThe status is verified.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the status changed in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone used is UTC,","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV04fromC0AC0C0OSgvp":{"name":"fromStatus","abstract":"\u003cp\u003eThe status before the transition.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eComments regarding the status change.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV5tokenSSSgvp":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated status transition identifier.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV02toC0AC0C0OSgvp":{"name":"toStatus","abstract":"\u003cp\u003eThe status after the transition.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV10transitionAC0C0OSgvp":{"name":"transition","abstract":"\u003cp\u003eThe new status of the resource.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition/Status.html":{"name":"Status","abstract":"\u003cp\u003eRepresentation of the status.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletStatusTransition.html\"\u003eHyperwalletStatusTransition\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html#/s:14HyperwalletSDK0A7ReceiptV0A9EntryTypeO6credityA2EmF":{"name":"credit","abstract":"\u003cp\u003eThe credit entry type\u003c/p\u003e","parent_name":"HyperwalletEntryType"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html#/s:14HyperwalletSDK0A7ReceiptV0A9EntryTypeO5debityA2EmF":{"name":"debit","abstract":"\u003cp\u003eThe debit entry type\u003c/p\u003e","parent_name":"HyperwalletEntryType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO9annualFeeyA2EmF":{"name":"annualFee","abstract":"\u003cp\u003eThe annual fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15annualFeeRefundyA2EmF":{"name":"annualFeeRefund","abstract":"\u003cp\u003eThe annual fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18customerServiceFeeyA2EmF":{"name":"customerServiceFee","abstract":"\u003cp\u003eThe customer service fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24customerServiceFeeRefundyA2EmF":{"name":"customerServiceFeeRefund","abstract":"\u003cp\u003eThe customer service fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20expeditedShippingFeeyA2EmF":{"name":"expeditedShippingFee","abstract":"\u003cp\u003eThe expedited shipping fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16genericFeeRefundyA2EmF":{"name":"genericFeeRefund","abstract":"\u003cp\u003eThe generic fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10monthlyFeeyA2EmF":{"name":"monthlyFee","abstract":"\u003cp\u003eThe monthly fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16monthlyFeeRefundyA2EmF":{"name":"monthlyFeeRefund","abstract":"\u003cp\u003eThe monthly fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16paymentExpiryFeeyA2EmF":{"name":"paymentExpiryFee","abstract":"\u003cp\u003eThe payment expiry fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10paymentFeeyA2EmF":{"name":"paymentFee","abstract":"\u003cp\u003eThe payment fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13processingFeeyA2EmF":{"name":"processingFee","abstract":"\u003cp\u003eThe processing fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19standardShippingFeeyA2EmF":{"name":"standardShippingFee","abstract":"\u003cp\u003eThe standard shipping fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO11transferFeeyA2EmF":{"name":"transferFee","abstract":"\u003cp\u003eThe transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10adjustmentyA2EmF":{"name":"adjustment","abstract":"\u003cp\u003eThe adjustment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7deposityA2EmF":{"name":"deposit","abstract":"\u003cp\u003eThe deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15foreignExchangeyA2EmF":{"name":"foreignExchange","abstract":"\u003cp\u003eThe foreign exchange\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16manualAdjustmentyA2EmF":{"name":"manualAdjustment","abstract":"\u003cp\u003eThe manual adjustment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17paymentExpirationyA2EmF":{"name":"paymentExpiration","abstract":"\u003cp\u003eThe payment expiration\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22bankAccountTransferFeeyA2EmF":{"name":"bankAccountTransferFee","abstract":"\u003cp\u003eThe bank account transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25bankAccountTransferReturnyA2EmF":{"name":"bankAccountTransferReturn","abstract":"\u003cp\u003eThe bank account transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28bankAccountTransferReturnFeeyA2EmF":{"name":"bankAccountTransferReturnFee","abstract":"\u003cp\u003eThe bank account transfer return fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21transferToBankAccountyA2EmF":{"name":"transferToBankAccount","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17cardActivationFeeyA2EmF":{"name":"cardActivationFee","abstract":"\u003cp\u003eThe card activation fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23cardActivationFeeWaiveryA2EmF":{"name":"cardActivationFeeWaiver","abstract":"\u003cp\u003eThe card activation fee waiver\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7cardFeeyA2EmF":{"name":"cardFee","abstract":"\u003cp\u003eThe card fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27manualTransferToPrepaidCardyA2EmF":{"name":"manualTransferToPrepaidCard","abstract":"\u003cp\u003eThe manual transfer to prepaid card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardBalanceInquiryFeeyA2EmF":{"name":"prepaidCardBalanceInquiryFee","abstract":"\u003cp\u003eThe prepaid card balance inquiry fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22prepaidCardCashAdvanceyA2EmF":{"name":"prepaidCardCashAdvance","abstract":"\u003cp\u003eThe prepaid card cash advance\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO31prepaidCardDisputedChargeRefundyA2EmF":{"name":"prepaidCardDisputedChargeRefund","abstract":"\u003cp\u003eThe prepaid card disputed charge refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardDisputeDeposityA2EmF":{"name":"prepaidCardDisputeDeposit","abstract":"\u003cp\u003eThe prepaid card dispute deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO36prepaidCardDomesticCashWithdrawalFeeyA2EmF":{"name":"prepaidCardDomesticCashWithdrawalFee","abstract":"\u003cp\u003eThe prepaid card domestic cash withdrawal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO33prepaidCardExchangeRateDifferenceyA2EmF":{"name":"prepaidCardExchangeRateDifference","abstract":"\u003cp\u003eThe prepaid card exchange rate difference\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardManualUnloadyA2EmF":{"name":"prepaidCardManualUnload","abstract":"\u003cp\u003eThe prepaid card manual unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO36prepaidCardOverseasCashWithdrawalFeeyA2EmF":{"name":"prepaidCardOverseasCashWithdrawalFee","abstract":"\u003cp\u003eThe prepaid card overseas cash withdrawal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardPinChangeFeeyA2EmF":{"name":"prepaidCardPinChangeFee","abstract":"\u003cp\u003eThe prepaid card pin change fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardRefundyA2EmF":{"name":"prepaidCardRefund","abstract":"\u003cp\u003eThe prepaid card refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardReplacementFeeyA2EmF":{"name":"prepaidCardReplacementFee","abstract":"\u003cp\u003eThe prepaid card replacement fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardSaleReversalyA2EmF":{"name":"prepaidCardSaleReversal","abstract":"\u003cp\u003eThe prepaid card sale reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardUnloadyA2EmF":{"name":"prepaidCardUnload","abstract":"\u003cp\u003eThe prepaid card unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19transferToDebitCardyA2EmF":{"name":"transferToDebitCard","abstract":"\u003cp\u003eThe transfer to debit card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21transferToPrepaidCardyA2EmF":{"name":"transferToPrepaidCard","abstract":"\u003cp\u003eThe transfer to prepaid card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardAccountDeposityA2EmF":{"name":"prepaidCardAccountDeposit","abstract":"\u003cp\u003eThe prepaid card account deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21prepaidCardAccountFeeyA2EmF":{"name":"prepaidCardAccountFee","abstract":"\u003cp\u003eThe prepaid card account fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardAnnualFeeDiscountyA2EmF":{"name":"prepaidCardAnnualFeeDiscount","abstract":"\u003cp\u003eThe prepaid card annual fee discount\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardBillReprintFeeyA2EmF":{"name":"prepaidCardBillReprintFee","abstract":"\u003cp\u003eThe prepaid card bill reprint fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardAtmOrCashAdvanceFeeyA2EmF":{"name":"prepaidCardAtmOrCashAdvanceFee","abstract":"\u003cp\u003eThe prepaid card atm or cash advance fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardCashAdvanceChargebackyA2EmF":{"name":"prepaidCardCashAdvanceChargeback","abstract":"\u003cp\u003eThe prepaid card cash advance chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO40prepaidCardCashAdvanceChargebackReversalyA2EmF":{"name":"prepaidCardCashAdvanceChargebackReversal","abstract":"\u003cp\u003eThe prepaid card cash advance chargeback reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardCashAdvanceRepressyA2EmF":{"name":"prepaidCardCashAdvanceRepress","abstract":"\u003cp\u003eThe prepaid card cash advance repress\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO37prepaidCardCashAdvanceRepressReversalyA2EmF":{"name":"prepaidCardCashAdvanceRepressReversal","abstract":"\u003cp\u003eThe prepaid card cash advance repress reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21prepaidCardChargebackyA2EmF":{"name":"prepaidCardChargeback","abstract":"\u003cp\u003eThe prepaid card chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27prepaidCardChargebackRefundyA2EmF":{"name":"prepaidCardChargebackRefund","abstract":"\u003cp\u003eThe prepaid card chargeback refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardChargebackRefundReversalyA2EmF":{"name":"prepaidCardChargebackRefundReversal","abstract":"\u003cp\u003eThe prepaid card chargeback refund reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardChargebackReversalyA2EmF":{"name":"prepaidCardChargebackReversal","abstract":"\u003cp\u003eThe prepaid card chargeback reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26prepaidCardCommissionOrFeeyA2EmF":{"name":"prepaidCardCommissionOrFee","abstract":"\u003cp\u003eThe prepaid card commission or fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardDebitTransferyA2EmF":{"name":"prepaidCardDebitTransfer","abstract":"\u003cp\u003eThe prepaid card debit transfer\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardDocumentRequestFeeyA2EmF":{"name":"prepaidCardDocumentRequestFee","abstract":"\u003cp\u003eThe prepaid card document request fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardEmergencyCashyA2EmF":{"name":"prepaidCardEmergencyCash","abstract":"\u003cp\u003eThe prepaid card emergency cash\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO020prepaidCardEmergencyF0yA2EmF":{"name":"prepaidCardEmergencyCard","abstract":"\u003cp\u003eThe prepaid card emergency card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardIncomeyA2EmF":{"name":"prepaidCardIncome","abstract":"\u003cp\u003eThe prepaid card income\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18prepaidCardLoadFeeyA2EmF":{"name":"prepaidCardLoadFee","abstract":"\u003cp\u003eThe prepaid card load fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO33prepaidCardOverduePaymentInterestyA2EmF":{"name":"prepaidCardOverduePaymentInterest","abstract":"\u003cp\u003eThe prepaid card overdue payment interest\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18prepaidCardPaymentyA2EmF":{"name":"prepaidCardPayment","abstract":"\u003cp\u003eThe prepaid card payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardPinReprintFeeyA2EmF":{"name":"prepaidCardPinReprintFee","abstract":"\u003cp\u003eThe prepaid card pin reprint fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26prepaidCardPriorityPassFeeyA2EmF":{"name":"prepaidCardPriorityPassFee","abstract":"\u003cp\u003eThe prepaid card priority pass fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardPriorityPassRenewalyA2EmF":{"name":"prepaidCardPriorityPassRenewal","abstract":"\u003cp\u003eThe prepaid card priority pass renewal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardRecurringInterestyA2EmF":{"name":"prepaidCardRecurringInterest","abstract":"\u003cp\u003eThe prepaid card recurring interest\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardRefundRepressyA2EmF":{"name":"prepaidCardRefundRepress","abstract":"\u003cp\u003eThe prepaid card refund repress\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardRefundRepressReversalyA2EmF":{"name":"prepaidCardRefundRepressReversal","abstract":"\u003cp\u003eThe prepaid card refund repress reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardStatementFeeyA2EmF":{"name":"prepaidCardStatementFee","abstract":"\u003cp\u003eThe prepaid card statement fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardTelephoneSupportFeeyA2EmF":{"name":"prepaidCardTelephoneSupportFee","abstract":"\u003cp\u003eThe prepaid card telephone support fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22prepaidCardTransferFeeyA2EmF":{"name":"prepaidCardTransferFee","abstract":"\u003cp\u003eThe prepaid card transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardTransferReturnyA2EmF":{"name":"prepaidCardTransferReturn","abstract":"\u003cp\u003eThe prepaid card transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardBankWithdrawalChargebackyA2EmF":{"name":"prepaidCardBankWithdrawalChargeback","abstract":"\u003cp\u003eThe prepaid card bank withdrawal chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20prepaidCardRefundfeeyA2EmF":{"name":"prepaidCardRefundfee","abstract":"\u003cp\u003eThe prepaid card refund fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardMonthlyMaintenanceFeeyA2EmF":{"name":"prepaidCardMonthlyMaintenanceFee","abstract":"\u003cp\u003eThe prepaid card monthly maintenance fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardTransactionFeeyA2EmF":{"name":"prepaidCardTransactionFee","abstract":"\u003cp\u003eThe prepaid card transaction fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardSmsFeeyA2EmF":{"name":"prepaidCardSmsFee","abstract":"\u003cp\u003eThe prepaid card sms fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardDeclinedAuthorizationFeeyA2EmF":{"name":"prepaidCardDeclinedAuthorizationFee","abstract":"\u003cp\u003eThe prepaid card declined authorization fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO5fispcyA2EmF":{"name":"fispc","abstract":"\u003cp\u003eThe prepaid card purchases\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO8donationyA2EmF":{"name":"donation","abstract":"\u003cp\u003eThe donation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO11donationFeeyA2EmF":{"name":"donationFee","abstract":"\u003cp\u003eThe donation fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14donationReturnyA2EmF":{"name":"donationReturn","abstract":"\u003cp\u003eThe donation return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15merchantPaymentyA2EmF":{"name":"merchantPayment","abstract":"\u003cp\u003eThe merchant payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18merchantPaymentFeeyA2EmF":{"name":"merchantPaymentFee","abstract":"\u003cp\u003eThe merchant payment fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21merchantPaymentRefundyA2EmF":{"name":"merchantPaymentRefund","abstract":"\u003cp\u003eThe merchant payment refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21merchantPaymentReturnyA2EmF":{"name":"merchantPaymentReturn","abstract":"\u003cp\u003eThe merchant payment return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23moneygramTransferReturnyA2EmF":{"name":"moneygramTransferReturn","abstract":"\u003cp\u003eThe money gram transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19transferToMoneygramyA2EmF":{"name":"transferToMoneygram","abstract":"\u003cp\u003eThe transfer to money gram\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13paperCheckFeeyA2EmF":{"name":"paperCheckFee","abstract":"\u003cp\u003eThe paper check fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16paperCheckRefundyA2EmF":{"name":"paperCheckRefund","abstract":"\u003cp\u003eThe paper check refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20transferToPaperCheckyA2EmF":{"name":"transferToPaperCheck","abstract":"\u003cp\u003eThe transfer to paper check\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14accountClosureyA2EmF":{"name":"accountClosure","abstract":"\u003cp\u003eThe account to be closed\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17accountClosureFeeyA2EmF":{"name":"accountClosureFee","abstract":"\u003cp\u003eThe account closure fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13accountUnloadyA2EmF":{"name":"accountUnload","abstract":"\u003cp\u003eThe account unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14dormantUserFeeyA2EmF":{"name":"dormantUserFee","abstract":"\u003cp\u003eThe dormant user fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20dormantUserFeeRefundyA2EmF":{"name":"dormantUserFeeRefund","abstract":"\u003cp\u003eThe dormant user fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7paymentyA2EmF":{"name":"payment","abstract":"\u003cp\u003eThe payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19paymentCancellationyA2EmF":{"name":"paymentCancellation","abstract":"\u003cp\u003eThe payment cancellation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15paymentReversalyA2EmF":{"name":"paymentReversal","abstract":"\u003cp\u003eThe payment reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18paymentReversalFeeyA2EmF":{"name":"paymentReversalFee","abstract":"\u003cp\u003eThe payment reversal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13paymentReturnyA2EmF":{"name":"paymentReturn","abstract":"\u003cp\u003eThe payment return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24transferToProgramAccountyA2EmF":{"name":"transferToProgramAccount","abstract":"\u003cp\u003eThe transfer to program account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14transferToUseryA2EmF":{"name":"transferToUser","abstract":"\u003cp\u003eThe transfer to user\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28virtualIncentiveCancellationyA2EmF":{"name":"virtualIncentiveCancellation","abstract":"\u003cp\u003eThe virtual incentive cancellation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24virtualIncentiveIssuanceyA2EmF":{"name":"virtualIncentiveIssuance","abstract":"\u003cp\u003eThe virtual incentive issuance\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24virtualIncentivePurchaseyA2EmF":{"name":"virtualIncentivePurchase","abstract":"\u003cp\u003eThe virtual incentive purchase\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22virtualIncentiveRefundyA2EmF":{"name":"virtualIncentiveRefund","abstract":"\u003cp\u003eThe virtual incentive refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22transferToWesternUnionyA2EmF":{"name":"transferToWesternUnion","abstract":"\u003cp\u003eThe transfer to western union\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18transferToWubsWireyA2EmF":{"name":"transferToWubsWire","abstract":"\u003cp\u003eThe transfer to wubs wire\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26westernUnionTransferReturnyA2EmF":{"name":"westernUnionTransferReturn","abstract":"\u003cp\u003eThe western union transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22wubsWireTransferReturnyA2EmF":{"name":"wubsWireTransferReturn","abstract":"\u003cp\u003eThe wubs wire transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14transferToWireyA2EmF":{"name":"transferToWire","abstract":"\u003cp\u003eThe transfer to Wire\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15wireTransferFeeyA2EmF":{"name":"wireTransferFee","abstract":"\u003cp\u003eThe wire transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18wireTransferReturnyA2EmF":{"name":"wireTransferReturn","abstract":"\u003cp\u003eThe wire transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15prepaidCardSaleyA2EmF":{"name":"prepaidCardSale","abstract":"\u003cp\u003eThe prepaid card sale\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23transferToPayPalAccountyA2EmF":{"name":"transferToPayPalAccount","abstract":"\u003cp\u003eTransfer to PayPal account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27paypalAccountTransferReturnyA2EmF":{"name":"paypalAccountTransferReturn","abstract":"\u003cp\u003eReturn to Paypal Account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22transferToVenmoAccountyA2EmF":{"name":"transferToVenmoAccount","abstract":"\u003cp\u003eTransfer to Venmo account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26venmoAccountTransferReturnyA2EmF":{"name":"venmoAccountTransferReturn","abstract":"\u003cp\u003eReturn to Venmo account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18transferToBankCardyA2EmF":{"name":"transferToBankCard","abstract":"\u003cp\u003eTransfer To Bank Card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7unknownyA2EmF":{"name":"unknown","abstract":"\u003cp\u003eDefault - unknown transfer type\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO4fromAEs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eA safe initializer for creating a HyperwalletReceiptType object\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV6amountSSSgvp":{"name":"amount","abstract":"\u003cp\u003eThe gross amount of the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the transaction was created on in ISO 8601 format \u0026lsquo;YYYY-MM-DDThh:mm:ss\u0026rsquo; (UTC timezone)\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe 3-letter currency code for the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV16destinationTokenSSSgvp":{"name":"destinationToken","abstract":"\u003cp\u003eA token identifying where the funds were sent.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV7detailsAA0aC7DetailsVSgvp":{"name":"details","abstract":"\u003cp\u003eDetails of the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV5entryAC0A9EntryTypeOSgvp":{"name":"entry","abstract":"\u003cp\u003eThe type of transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV3feeSSSgvp":{"name":"fee","abstract":"\u003cp\u003eThe fee amount.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV23foreignExchangeCurrencySSSgvp":{"name":"foreignExchangeCurrency","abstract":"\u003cp\u003eThe 3-letter currency code for the foreign exchange.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV19foreignExchangeRateSSSgvp":{"name":"foreignExchangeRate","abstract":"\u003cp\u003eThe foreign exchange rate.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV9journalIdSSSgvp":{"name":"journalId","abstract":"\u003cp\u003eThe journal entry number for the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV11sourceTokenSSSgvp":{"name":"sourceToken","abstract":"\u003cp\u003eA token identifying the source of funds.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV4typeAC0aC4TypeOSgvp":{"name":"type","abstract":"\u003cp\u003eThe transaction type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html":{"name":"HyperwalletReceiptType","abstract":"\u003cp\u003eThe transaction type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html":{"name":"HyperwalletEntryType","abstract":"\u003cp\u003eThe entry type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV13bankAccountIdSSSgvp":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18bankAccountPurposeSSSgvp":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe bank account type, e.g. CHECKING or SAVINGS\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV6bankIdSSSgvp":{"name":"bankId","abstract":"\u003cp\u003eThe bank code, BIC/SWIFT or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV8bankNameSSSgvp":{"name":"bankName","abstract":"\u003cp\u003eThe bank name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18branchAddressLine1SSSgvp":{"name":"branchAddressLine1","abstract":"\u003cp\u003eThe branch address, first line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18branchAddressLine2SSSgvp":{"name":"branchAddressLine2","abstract":"\u003cp\u003eThe branch address, second line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10branchCitySSSgvp":{"name":"branchCity","abstract":"\u003cp\u003eThe branch city\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV13branchCountrySSSgvp":{"name":"branchCountry","abstract":"\u003cp\u003eThe 2-letter country code of the branch\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV8branchIdSSSgvp":{"name":"branchId","abstract":"\u003cp\u003eThe branch code or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10branchNameSSSgvp":{"name":"branchName","abstract":"\u003cp\u003eThe branch name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV16branchPostalCodeSSSgvp":{"name":"branchPostalCode","abstract":"\u003cp\u003eThe branch postal code\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV19branchStateProvinceSSSgvp":{"name":"branchStateProvince","abstract":"\u003cp\u003eThe branch state or province\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14cardExpiryDateSSSgvp":{"name":"cardExpiryDate","abstract":"\u003cp\u003eThe card expiry date in YYYY-MM format\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14cardHolderNameSSSgvp":{"name":"cardHolderName","abstract":"\u003cp\u003eThe card holder\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10cardNumberSSSgvp":{"name":"cardNumber","abstract":"\u003cp\u003eThe card number\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV11charityNameSSSgvp":{"name":"charityName","abstract":"\u003cp\u003eThe name of the charity that is receiving the donation\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV11checkNumberSSSgvp":{"name":"checkNumber","abstract":"\u003cp\u003eThe paper check number\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV15clientPaymentIdSSSgvp":{"name":"clientPaymentId","abstract":"\u003cp\u003eThe client-assigned transaction identifier\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV4memoSSSgvp":{"name":"memo","abstract":"\u003cp\u003eAn internal note added by a client operator\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eA description for the receipt\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17payeeAddressLine1SSSgvp":{"name":"payeeAddressLine1","abstract":"\u003cp\u003eThe payee\u0026rsquo;s address first line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17payeeAddressLine2SSSgvp":{"name":"payeeAddressLine2","abstract":"\u003cp\u003eThe payee\u0026rsquo;s address, second line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payeeCitySSSgvp":{"name":"payeeCity","abstract":"\u003cp\u003eThe payee\u0026rsquo;s city\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV12payeeCountrySSSgvp":{"name":"payeeCountry","abstract":"\u003cp\u003eThe payee\u0026rsquo;s 2-letter country code\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10payeeEmailSSSgvp":{"name":"payeeEmail","abstract":"\u003cp\u003eThe payee\u0026rsquo;s email address on record\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payeeNameSSSgvp":{"name":"payeeName","abstract":"\u003cp\u003eThe payee\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV15payeePostalCodeSSSgvp":{"name":"payeePostalCode","abstract":"\u003cp\u003eThe payee\u0026rsquo;s postal code, ZIP code or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18payeeStateProvinceSSSgvp":{"name":"payeeStateProvince","abstract":"\u003cp\u003eThe payee\u0026rsquo;s state or province\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payerNameSSSgvp":{"name":"payerName","abstract":"\u003cp\u003eThe payer\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17paymentExpiryDateSSSgvp":{"name":"paymentExpiryDate","abstract":"\u003cp\u003eThe payment expiry date in YYYY-MM-DD format\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV20returnOrRecallReasonSSSgvp":{"name":"returnOrRecallReason","abstract":"\u003cp\u003eThe reason for returning or recalling the payment\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14securityAnswerSSSgvp":{"name":"securityAnswer","abstract":"\u003cp\u003eThe answer to the securityQuestion\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV16securityQuestionSSSgvp":{"name":"securityQuestion","abstract":"\u003cp\u003eA security question\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV7websiteSSSgvp":{"name":"website","abstract":"\u003cp\u003eThe URL of the client website where the virtual incentive was accrued\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletPageParameter.html#/s:14HyperwalletSDK0A13PageParameterV3relSSSgvp":{"name":"rel","abstract":"\u003cp\u003eThe relationship\u003c/p\u003e","parent_name":"HyperwalletPageParameter"},"Structs/HyperwalletPageLink.html#/s:14HyperwalletSDK0A8PageLinkV4href10Foundation3URLVSgvp":{"name":"href","abstract":"\u003cp\u003eThe URL of the link\u003c/p\u003e","parent_name":"HyperwalletPageLink"},"Structs/HyperwalletPageLink.html#/s:14HyperwalletSDK0A8PageLinkV6paramsAA0aC9ParameterVSgvp":{"name":"params","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletPageParameter.html\"\u003eHyperwalletPageParameter\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletPageLink"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5countSiSgvp":{"name":"count","abstract":"\u003cp\u003eThe amount of the dataset\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV4dataSayxGSgvp":{"name":"data","abstract":"\u003cp\u003eThe \u003ccode\u003eListType\u003c/code\u003e items\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5limitSiSgvp":{"name":"limit","abstract":"\u003cp\u003eThe maximum number of records that will be returned per page\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5linksSayAA0aC4LinkVGSgvp":{"name":"links","abstract":"\u003cp\u003eThe links\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV6offsetSiSgvp":{"name":"offset","abstract":"\u003cp\u003eThe number of records to skip.\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:14HyperwalletSDK0A43TransferMethodUpdateConfigurationFieldQueryV08transferD5TokenACSS_tcfc":{"name":"init(transferMethodToken:)","abstract":"\u003cp\u003eCreate a new \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationFieldQuery\u003c/code\u003e from the transferMethodToken\u003c/p\u003e","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html#/s:14HyperwalletSDK0A36TransferMethodConfigurationKeysQueryV5limitACSi_tcfc":{"name":"init(limit:)","abstract":"\u003cp\u003e/ Create a new \u003ccode\u003eHyperwalletTransferMethodConfigurationKeysQuery\u003c/code\u003e instance\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKeysQuery"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodConfigurationKeysQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:14HyperwalletSDK0A37TransferMethodConfigurationFieldQueryV7country8currency08transferD4Type7profileACSS_S3Stcfc":{"name":"init(country:currency:transferMethodType:profile:)","abstract":"\u003cp\u003eCreate a new \u003ccode\u003eHyperwalletTransferMethodConfigurationQuery\u003c/code\u003e from the country, currency, transferMethodType","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletConditionalPattern.html#/s:14HyperwalletSDK0A18ConditionalPatternV7patternSSvp":{"name":"pattern","abstract":"\u003cp\u003eThe pattern\u003c/p\u003e","parent_name":"HyperwalletConditionalPattern"},"Structs/HyperwalletConditionalPattern.html#/s:14HyperwalletSDK0A18ConditionalPatternV5regexSSvp":{"name":"regex","abstract":"\u003cp\u003eThe regex\u003c/p\u003e","parent_name":"HyperwalletConditionalPattern"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV19conditionalPatternsSayAA0A18ConditionalPatternVGSgvp":{"name":"conditionalPatterns","abstract":"\u003cp\u003eThe conditional pattern, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV14defaultPatternSSvp":{"name":"defaultPattern","abstract":"\u003cp\u003eThe default pattern\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV10scrubRegexSSSgvp":{"name":"scrubRegex","abstract":"\u003cp\u003eThe scrub regex, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV7countrySSSgvp":{"name":"country","abstract":"\u003cp\u003eThe country\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV08transferD4TypeSSSgvp":{"name":"transferMethodType","abstract":"\u003cp\u003eThe transfer method type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV7profileSSSgvp":{"name":"profile","abstract":"\u003cp\u003eThe profile type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV11fieldGroupsAA10ConnectionVyAA0A10FieldGroupVGSgvp":{"name":"fieldGroups","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletFieldGroup.html\"\u003eHyperwalletFieldGroup\u003c/a\u003e\u003c/code\u003e, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV6lengthSSSgvp":{"name":"length","abstract":"\u003cp\u003eThe validation message length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV7patternSSSgvp":{"name":"pattern","abstract":"\u003cp\u003eThe validation message pattern, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV5emptySSSgvp":{"name":"empty","abstract":"\u003cp\u003eThe validation message empty, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe country code\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe country name\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4feesAA10ConnectionVyAA0A3FeeVGSgvp":{"name":"fees","abstract":"\u003cp\u003eThe fees for transfer\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV15processingTimesAA10ConnectionVyAA0A14ProcessingTimeVGSgvp":{"name":"processingTimes","abstract":"\u003cp\u003eThe processing time for transfer\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV7countrySSSgvp":{"name":"country","abstract":"\u003cp\u003eThe country to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV18transferMethodTypeSSSgvp":{"name":"transferMethodType","abstract":"\u003cp\u003eThe transfer method type\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe value to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletFieldSelectionOption.html#/s:14HyperwalletSDK0A20FieldSelectionOptionV5labelSSSgvp":{"name":"label","abstract":"\u003cp\u003eThe label\u003c/p\u003e","parent_name":"HyperwalletFieldSelectionOption"},"Structs/HyperwalletFieldSelectionOption.html#/s:14HyperwalletSDK0A20FieldSelectionOptionV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe value\u003c/p\u003e","parent_name":"HyperwalletFieldSelectionOption"},"Structs/HyperwalletFieldGroup.html#/s:14HyperwalletSDK0A10FieldGroupV5groupSSSgvp":{"name":"group","abstract":"\u003cp\u003eThe group\u003c/p\u003e","parent_name":"HyperwalletFieldGroup"},"Structs/HyperwalletFieldGroup.html#/s:14HyperwalletSDK0A10FieldGroupV6fieldsSayAA0aC0VGSgvp":{"name":"fields","abstract":"\u003cp\u003eThe list of HyperwalletField\u003c/p\u003e","parent_name":"HyperwalletFieldGroup"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV8dataTypeSSSgvp":{"name":"dataType","abstract":"\u003cp\u003eThe field data type, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV21fieldSelectionOptionsSayAA0acE6OptionVGSgvp":{"name":"fieldSelectionOptions","abstract":"\u003cp\u003eThe list of selection option, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV10isRequiredSbSgvp":{"name":"isRequired","abstract":"\u003cp\u003eIndicate if the field is mandatory, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV10isEditableSbSgvp":{"name":"isEditable","abstract":"\u003cp\u003eIndicate if the field is editable, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV5labelSSSgvp":{"name":"label","abstract":"\u003cp\u003eThe field label\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV9maxLengthSiSgvp":{"name":"maxLength","abstract":"\u003cp\u003eThe field maximum length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV9minLengthSiSgvp":{"name":"minLength","abstract":"\u003cp\u003eThe field minimum length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe field name, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV11placeholderSSSgvp":{"name":"placeholder","abstract":"\u003cp\u003eThe field placeholder, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV17regularExpressionSSSgvp":{"name":"regularExpression","abstract":"\u003cp\u003eThe regular expression to validate the field value, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV17validationMessageAA0a10ValidationE0VSgvp":{"name":"validationMessage","abstract":"\u003cp\u003eThe validation message\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe field value\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV4maskAA0A4MaskVSgvp":{"name":"mask","abstract":"\u003cp\u003eThe mask, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV16fieldValueMaskedSbSgvp":{"name":"fieldValueMasked","abstract":"\u003cp\u003eIndicate if the field is masked, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV11feeRateTypeSSSgvp":{"name":"feeRateType","abstract":"\u003cp\u003eThe fee rate type (FLAT or PERCENT)\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe fee value\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe fee currency\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV7minimumSSSgvp":{"name":"minimum","abstract":"\u003cp\u003eThe minimum fee, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV7maximumSSSgvp":{"name":"maximum","abstract":"\u003cp\u003eThe maximum fee, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe 3 letter ISO 4217-1 currency code\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe currency name\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV19transferMethodTypesAA10ConnectionVyAA0a8TransferE4TypeVGSgvp":{"name":"transferMethodTypes","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransferMethodType.html\"\u003eHyperwalletTransferMethodType\u003c/a\u003e\u003c/code\u003e nodes that connect to this currency node\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe 2 letter ISO 3166-1 country code\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe country name\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV10currenciesAA10ConnectionVyAA0A8CurrencyVGSgvp":{"name":"currencies","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletCurrency.html\"\u003eHyperwalletCurrency\u003c/a\u003e\u003c/code\u003e nodes that connect to this country node\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/Connection.html#/s:14HyperwalletSDK10ConnectionV5nodesSayxGSgvp":{"name":"nodes","abstract":"\u003cp\u003eArray of Connection type\u003c/p\u003e","parent_name":"Connection"},"Structs/HyperwalletBalance.html#/s:14HyperwalletSDK0A7BalanceV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency of balance\u003c/p\u003e","parent_name":"HyperwalletBalance"},"Structs/HyperwalletBalance.html#/s:14HyperwalletSDK0A7BalanceV6amountSSSgvp":{"name":"amount","abstract":"\u003cp\u003eThe amount of balance\u003c/p\u003e","parent_name":"HyperwalletBalance"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV7messageSSvp":{"name":"message","abstract":"\u003cp\u003eThe error message\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV4codeSSvp":{"name":"code","abstract":"\u003cp\u003eThe error code\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV9fieldNameSSSgvp":{"name":"fieldName","abstract":"\u003cp\u003eThe field name\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV16relatedResourcesSaySSGSgvp":{"name":"relatedResources","abstract":"\u003cp\u003eThe list of related resources\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV7message4code9fieldName16relatedResourcesACSS_S2SSgSaySSGSgtcfc":{"name":"init(message:code:fieldName:relatedResources:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletError\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletErrors/CodingKeys.html#/s:14HyperwalletSDK0A6ErrorsV10CodingKeysO9errorListyA2EmF":{"name":"errorList","parent_name":"CodingKeys"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorListSayAA0A5ErrorVGSgvp":{"name":"errorList","abstract":"\u003cp\u003eThe error list\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV13originalErrors0E0_pSgvp":{"name":"originalError","abstract":"\u003cp\u003eThe original error\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors/CodingKeys.html":{"name":"CodingKeys","abstract":"\u003cp\u003eThe CodingKeys for Hyperwallet errors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorListACSayAA0A5ErrorVG_tcfc":{"name":"init(errorList:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletErrors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorList13originalErrorACSayAA0aG0VG_s0G0_pSgtcfc":{"name":"init(errorList:originalError:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletErrors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV11environmentSSSgvp":{"name":"environment","abstract":"\u003cp\u003eThe environment type\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV11insightsUrlSSSgvp":{"name":"insightsUrl","abstract":"\u003cp\u003eThe insights Url\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV6issuerSSvp":{"name":"issuer","abstract":"\u003cp\u003eThe issuer\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV9userTokenSSvp":{"name":"userToken","abstract":"\u003cp\u003eThe user token\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV12programModelSSSgvp":{"name":"programModel","abstract":"\u003cp\u003eThe program model\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html":{"name":"Configuration","abstract":"\u003cp\u003eConfiguration object retrieved on successful authentication\u003c/p\u003e"},"Structs/HyperwalletErrors.html":{"name":"HyperwalletErrors","abstract":"\u003cp\u003eRepresentation of the Hyperwallet error list\u003c/p\u003e"},"Structs/HyperwalletError.html":{"name":"HyperwalletError","abstract":"\u003cp\u003eRepresentation of the Hyperwallet error entity.\u003c/p\u003e"},"Structs/HyperwalletBalance.html":{"name":"HyperwalletBalance","abstract":"\u003cp\u003eDetails of the balance.\u003c/p\u003e"},"Structs/Connection.html":{"name":"Connection","abstract":"\u003cp\u003eRepresentation of the GraphQL\u0026rsquo;s Connection type\u003c/p\u003e"},"Structs/HyperwalletCountry.html":{"name":"HyperwalletCountry","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletCountry\u003c/code\u003e node\u003c/p\u003e"},"Structs/HyperwalletCurrency.html":{"name":"HyperwalletCurrency","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletCurrency\u003c/code\u003e node\u003c/p\u003e"},"Structs/HyperwalletFee.html":{"name":"HyperwalletFee","abstract":"\u003cp\u003eRepresentation of the fee\u003c/p\u003e"},"Structs/HyperwalletField.html":{"name":"HyperwalletField","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field\u003c/p\u003e"},"Structs/HyperwalletFieldGroup.html":{"name":"HyperwalletFieldGroup","abstract":"\u003cp\u003eRepresentation of list of HyperwalletField and the group to which it belongs\u003c/p\u003e"},"Structs/HyperwalletFieldSelectionOption.html":{"name":"HyperwalletFieldSelectionOption","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field selection option\u003c/p\u003e"},"Structs/HyperwalletProcessingTime.html":{"name":"HyperwalletProcessingTime","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field processing times\u003c/p\u003e"},"Structs/HyperwalletTransferMethodType.html":{"name":"HyperwalletTransferMethodType","abstract":"\u003cp\u003eRepresentation of transfer method type\u003c/p\u003e"},"Structs/HyperwalletValidationMessage.html":{"name":"HyperwalletValidationMessage","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field validation message\u003c/p\u003e"},"Structs/HyperwalletTransferMethodConfiguration.html":{"name":"HyperwalletTransferMethodConfiguration","abstract":"\u003cp\u003eRepresentation of the transfer method configuration\u003c/p\u003e"},"Structs/HyperwalletMask.html":{"name":"HyperwalletMask","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field mask\u003c/p\u003e"},"Structs/HyperwalletConditionalPattern.html":{"name":"HyperwalletConditionalPattern","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field conditionalPatterns\u003c/p\u003e"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html":{"name":"HyperwalletTransferMethodConfigurationFieldQuery","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationFieldQuery\u003c/code\u003e struct defines and builds a query to retrieve the fields"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html":{"name":"HyperwalletTransferMethodConfigurationKeysQuery","abstract":"\u003cp\u003eThe \u0026lsquo;HyperwalletTransferMethodConfigurationKeysQuery\u0026rsquo; struct defines and builds a query to retrieve the key set"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html":{"name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery","abstract":"\u003cp\u003eThe \u0026lsquo;HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery\u0026rsquo; struct defines"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html":{"name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationFieldQuery\u003c/code\u003e"},"Structs/HyperwalletPageList.html":{"name":"HyperwalletPageList","abstract":"\u003cp\u003eRepresentation of subset content from a dataset\u003c/p\u003e"},"Structs/HyperwalletPageLink.html":{"name":"HyperwalletPageLink","abstract":"\u003cp\u003eRepresentation of the page link\u003c/p\u003e"},"Structs/HyperwalletPageParameter.html":{"name":"HyperwalletPageParameter","abstract":"\u003cp\u003eRepresentation of the relationship between the current document and the linked document\u003c/p\u003e"},"Structs/HyperwalletReceiptDetails.html":{"name":"HyperwalletReceiptDetails","abstract":"\u003cp\u003eDetails of the transaction.\u003c/p\u003e"},"Structs/HyperwalletReceipt.html":{"name":"HyperwalletReceipt","abstract":"\u003cp\u003eRepresentation of the Hyperwallet\u0026rsquo;s receipt.\u003c/p\u003e"},"Structs/HyperwalletStatusTransition.html":{"name":"HyperwalletStatusTransition","abstract":"\u003cp\u003eRepresentation of the status transition.\u003c/p\u003e"},"Structs/HyperwalletForeignExchange.html":{"name":"HyperwalletForeignExchange","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletForeignExchange\u003c/code\u003e\u003c/p\u003e"},"Structs/HyperwalletTransfer.html":{"name":"HyperwalletTransfer","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletTransfer\u003c/code\u003e\u003c/p\u003e"},"Protocols/HyperwalletTransferMethodUpdateConfigurationField.html#/s:14HyperwalletSDK0A38TransferMethodUpdateConfigurationFieldP08transferdeF0AA0acdF0VSgyF":{"name":"transferMethodUpdateConfiguration()","abstract":"\u003cp\u003eReturns \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransferMethodConfiguration.html\"\u003eHyperwalletTransferMethodConfiguration\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethodUpdateConfigurationField"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP9countriesSayAA0A7CountryVGSgyF":{"name":"countries()","abstract":"\u003cp\u003eReturns the list of countries\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP10currencies4fromSayAA0A8CurrencyVGSgSS_tF":{"name":"currencies(from:)","abstract":"\u003cp\u003eReturns the list of currencies based on the country\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP08transferD5Types11countryCode08currencyJ0SayAA0acD4TypeVGSgSS_SStF":{"name":"transferMethodTypes(countryCode:currencyCode:)","abstract":"\u003cp\u003eReturns the list of transfer method types based on the parameters\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationField.html#/s:14HyperwalletSDK0A32TransferMethodConfigurationFieldP11fieldGroupsSayAA0aF5GroupVGSgyF":{"name":"fieldGroups()","abstract":"\u003cp\u003eReturns a list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletField.html\"\u003eHyperwalletField\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationField"},"Protocols/HyperwalletTransferMethodConfigurationField.html#/s:14HyperwalletSDK0A32TransferMethodConfigurationFieldP08transferD4TypeAA0acdH0VSgyF":{"name":"transferMethodType()","abstract":"\u003cp\u003eReturns the list of transfer method types based on the parameters\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationField"},"Protocols/HyperwalletAuthenticationTokenProvider.html#/s:14HyperwalletSDK0A27AuthenticationTokenProviderP17CompletionHandlera":{"name":"CompletionHandler","abstract":"\u003cp\u003eA callback interface to handle the submission of an authentication token or an error message in case of failure.\u003c/p\u003e","parent_name":"HyperwalletAuthenticationTokenProvider"},"Protocols/HyperwalletAuthenticationTokenProvider.html#/c:@M@HyperwalletSDK@objc(pl)HyperwalletAuthenticationTokenProvider(im)retrieveAuthenticationTokenWithCompletionHandler:":{"name":"retrieveAuthenticationToken(completionHandler:)","abstract":"\u003cp\u003eInvoked when the Hyperwallet iOS Core SDK requires an authentication token.\u003c/p\u003e","parent_name":"HyperwalletAuthenticationTokenProvider"},"Protocols/HyperwalletAuthenticationTokenProvider.html":{"name":"HyperwalletAuthenticationTokenProvider","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletAuthenticationTokenProvider\u003c/code\u003e protocol provides the Hyperwallet iOS Core SDK with an"},"Protocols/HyperwalletTransferMethodConfigurationField.html":{"name":"HyperwalletTransferMethodConfigurationField","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationField\u003c/code\u003e protocol for processing the transfer method"},"Protocols/HyperwalletTransferMethodConfigurationKey.html":{"name":"HyperwalletTransferMethodConfigurationKey","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationKey\u003c/code\u003e protocol for processing the transfer method configuration"},"Protocols/HyperwalletTransferMethodUpdateConfigurationField.html":{"name":"HyperwalletTransferMethodUpdateConfigurationField","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationField\u003c/code\u003e protocol for processing the update transfer method"},"Extensions/ISO8601DateFormatter.html#/s:So22NSISO8601DateFormatterC14HyperwalletSDKE14ignoreTimeZoneABvpZ":{"name":"ignoreTimeZone","abstract":"\u003cp\u003eThe thread-safe date formatter to work with ISO8601 date representations.","parent_name":"ISO8601DateFormatter"},"Extensions/ISO8601DateFormatter.html":{"name":"ISO8601DateFormatter","abstract":"\u003cp\u003eDate extension.\u003c/p\u003e"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4textyA2CmF":{"name":"text","abstract":"\u003cp\u003eThe text field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO9selectionyA2CmF":{"name":"selection","abstract":"\u003cp\u003eThe selecion option field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO7booleanyA2CmF":{"name":"boolean","abstract":"\u003cp\u003eThe boolean field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO6numberyA2CmF":{"name":"number","abstract":"\u003cp\u003eThe numeric field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5rangeyA2CmF":{"name":"range","abstract":"\u003cp\u003eThe range field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4dateyA2CmF":{"name":"date","abstract":"\u003cp\u003eThe date field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO8datetimeyA2CmF":{"name":"datetime","abstract":"\u003cp\u003eThe datetime field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO10expiryDateyA2CmF":{"name":"expiryDate","abstract":"\u003cp\u003eThe expiry date field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5phoneyA2CmF":{"name":"phone","abstract":"\u003cp\u003eThe phone field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5emailyA2CmF":{"name":"email","abstract":"\u003cp\u003eThe email field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4fileyA2CmF":{"name":"file","abstract":"\u003cp\u003eThe file field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO8businessyA2CmF":{"name":"business","abstract":"\u003cp\u003eReturned when a business error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO10unexpectedyA2CmF":{"name":"unexpected","abstract":"\u003cp\u003eReturned when an unexpected error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO10connectionyA2CmF":{"name":"connection","abstract":"\u003cp\u003eReturned when a connection error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO14authenticationyA2CmF":{"name":"authentication","abstract":"\u003cp\u003eReturned when a authentication error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO7expiredyACSScACmF":{"name":"expired(_:)","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO10unexpectedyACSScACmF":{"name":"unexpected(_:)","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO7messageSSyF":{"name":"message()","abstract":"\u003cp\u003eGets the AuthenticationErrorType error message\u003c/p\u003e","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO4httpyAcA0A6ErrorsV_SitcACmF":{"name":"http(_:_:)","abstract":"\u003cp\u003eReturned when an HTTP code is not in the range 2xx.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO05parseC0yAcA0A6ErrorsVcACmF":{"name":"parseError(_:)","abstract":"\u003cp\u003eReturned when a response parser process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO14notInitializedyAcA0A6ErrorsVcACmF":{"name":"notInitialized(_:)","abstract":"\u003cp\u003eReturned when the SDK was not initialized properly.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO10invalidUrlyAcA0A6ErrorsVcACmF":{"name":"invalidUrl(_:)","abstract":"\u003cp\u003eReturned when a provided URL is not valid\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO18transactionAbortedyAcA0A6ErrorsVcACmF":{"name":"transactionAborted(_:)","abstract":"\u003cp\u003eReturned when a transaction is explicitly aborted.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO014authenticationC0yAcA0a14AuthenticationcD0OcACmF":{"name":"authenticationError(_:)","abstract":"\u003cp\u003eReturned on authentication failure\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO10unexpectedyAcA0A6ErrorsVcACmF":{"name":"unexpected(_:)","abstract":"\u003cp\u003eReturned when an unexpected behavior happened.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO13graphQlErrorsyAcA0aG0VcACmF":{"name":"graphQlErrors(_:)","abstract":"\u003cp\u003eReturned when a GraphQL parser process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO14invalidRequestyAcA0A6ErrorsVcACmF":{"name":"invalidRequest(_:)","abstract":"\u003cp\u003eReturned when some step-in builds the request throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO010connectionC0yAcA0A6ErrorsVcACmF":{"name":"connectionError(_:)","abstract":"\u003cp\u003eReturned when during the connection process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO5groupAA0aC5GroupOvp":{"name":"group","abstract":"\u003cp\u003eThe error type group\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO03getA6ErrorsAA0aF0VSgyF":{"name":"getHyperwalletErrors()","abstract":"\u003cp\u003eGets the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletErrors.html\"\u003eHyperwalletErrors\u003c/a\u003e\u003c/code\u003e based on the ErrorType\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO017getAuthenticationC0AA0afcD0OSgyF":{"name":"getAuthenticationError()","abstract":"\u003cp\u003eGets the \u003ccode\u003eAuthenticationErrorType\u003c/code\u003e on the ErrorType\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO11getHttpCodeSiSgyF":{"name":"getHttpCode()","abstract":"\u003cp\u003eGets the HTTP Code based on the ErrorType.http\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html":{"name":"HyperwalletErrorType","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletErrorType\u003c/code\u003e is the error type returned By Hyperwallet SDK.\u003c/p\u003e"},"Enums/HyperwalletAuthenticationErrorType.html":{"name":"HyperwalletAuthenticationErrorType","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletAuthenticationErrorType\u003c/code\u003e is the authentication error type returned By Hyperwallet SDK.\u003c/p\u003e"},"Enums/HyperwalletErrorGroup.html":{"name":"HyperwalletErrorGroup","abstract":"\u003cp\u003eRepresentation of the error type group\u003c/p\u003e"},"Enums/HyperwalletDataType.html":{"name":"HyperwalletDataType","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field data type\u003c/p\u003e"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessContactAddressLine1yAESSF":{"name":"businessContactAddressLine1(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessContactAddressLine2yAESSF":{"name":"businessContactAddressLine2(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC19businessContactCityyAESSF":{"name":"businessContactCity(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC22businessContactCountryyAESSF":{"name":"businessContactCountry(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC25businessContactPostalCodeyAESSF":{"name":"businessContactPostalCode(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC19businessContactRoleyAeC08BusinessfG0OF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC28businessContactStateProvinceyAESSF":{"name":"businessContactStateProvince(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the business name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC21businessOperatingNameyAESSF":{"name":"businessOperatingName(_:)","abstract":"\u003cp\u003eSets the business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12businessTypeyAeC08BusinessF0OF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC9createdOnyAESSF":{"name":"createdOn(_:)","abstract":"\u003cp\u003eSets the datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5emailyAESSF":{"name":"email(_:)","abstract":"\u003cp\u003eSets the contact email address for the user account. This must be unique for your program, so you cannot","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC6genderyAeC6GenderOF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8languageyAESSF":{"name":"language(_:)","abstract":"\u003cp\u003eSets the preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11profileTypeyAeC07ProfileF0OF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12programTokenyAESSF":{"name":"programToken(_:)","abstract":"\u003cp\u003eSets the unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8setField3key5valueAeC0cF0O_SStF":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser/UserField.html\"\u003eUserField\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8setField3key5valueAESS_SStF":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the \u003ccode\u003eUserField.RawValue\u003c/code\u003e\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC6statusyAeC6StatusOF":{"name":"status(_:)","abstract":"\u003cp\u003eSets the user account status.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8timeZoneyAESSF":{"name":"timeZone(_:)","abstract":"\u003cp\u003eSets the local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5tokenyAESSF":{"name":"token(_:)","abstract":"\u003cp\u003eSets the unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC18verificationStatusyAeC012VerificationF0OF":{"name":"verificationStatus(_:)","abstract":"\u003cp\u003eSets the the user\u0026rsquo;s verification status. A user may be required to verify their identity after a certain","parent_name":"Builder"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is fail. Temporary status before changing to REQUIRED.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO11notRequiredyA2EmF":{"name":"notRequired","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is not require.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO8requiredyA2EmF":{"name":"required","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is require.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO11underReviewyA2EmF":{"name":"underReview","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is under review.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is verified.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eThe user account is activated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO11deactivatedyA2EmF":{"name":"deactivated","abstract":"\u003cp\u003eThe user account is deactivated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO6frozenyA2EmF":{"name":"frozen","abstract":"\u003cp\u003eThe user account is frozen.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO6lockedyA2EmF":{"name":"locked","abstract":"\u003cp\u003eThe user account is locked.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO12preActivatedyA2EmF":{"name":"preActivated","abstract":"\u003cp\u003eThe user account is pre activated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/ProfileType.html#/s:14HyperwalletSDK0A4UserC11ProfileTypeO8businessyA2EmF":{"name":"business","abstract":"\u003cp\u003eThe business profile type.\u003c/p\u003e","parent_name":"ProfileType"},"Classes/HyperwalletUser/ProfileType.html#/s:14HyperwalletSDK0A4UserC11ProfileTypeO10individualyA2EmF":{"name":"individual","abstract":"\u003cp\u003eThe individual profile type.\u003c/p\u003e","parent_name":"ProfileType"},"Classes/HyperwalletUser/Gender.html#/s:14HyperwalletSDK0A4UserC6GenderO6femaleyA2EmF":{"name":"female","abstract":"\u003cp\u003eThe female gender\u003c/p\u003e","parent_name":"Gender"},"Classes/HyperwalletUser/Gender.html#/s:14HyperwalletSDK0A4UserC6GenderO4maleyA2EmF":{"name":"male","abstract":"\u003cp\u003eThe male gender\u003c/p\u003e","parent_name":"Gender"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO8directoryA2EmF":{"name":"director","abstract":"\u003cp\u003eThe director role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO5otheryA2EmF":{"name":"other","abstract":"\u003cp\u003eThe other role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO5owneryA2EmF":{"name":"owner","abstract":"\u003cp\u003eThe owner role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessType.html#/s:14HyperwalletSDK0A4UserC12BusinessTypeO11corporationyA2EmF":{"name":"corporation","abstract":"\u003cp\u003eThe corporation business type\u003c/p\u003e","parent_name":"BusinessType"},"Classes/HyperwalletUser/BusinessType.html#/s:14HyperwalletSDK0A4UserC12BusinessTypeO11partnershipyA2EmF":{"name":"partnership","abstract":"\u003cp\u003eThe partnership business type\u003c/p\u003e","parent_name":"BusinessType"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12addressLine1yA2EmF":{"name":"addressLine1","abstract":"\u003cp\u003eThe user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12addressLine2yA2EmF":{"name":"addressLine2","abstract":"\u003cp\u003eThe user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessContactAddressLine1yA2EmF":{"name":"businessContactAddressLine1","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessContactAddressLine2yA2EmF":{"name":"businessContactAddressLine2","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO19businessContactCityyA2EmF":{"name":"businessContactCity","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO22businessContactCountryyA2EmF":{"name":"businessContactCountry","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO25businessContactPostalCodeyA2EmF":{"name":"businessContactPostalCode","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO19businessContactRoleyA2EmF":{"name":"businessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO28businessContactStateProvinceyA2EmF":{"name":"businessContactStateProvince","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12businessNameyA2EmF":{"name":"businessName","abstract":"\u003cp\u003eThe business name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO21businessOperatingNameyA2EmF":{"name":"businessOperatingName","abstract":"\u003cp\u003eThe business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessRegistrationCountryyA2EmF":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the business is registered.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO22businessRegistrationIdyA2EmF":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO33businessRegistrationStateProvinceyA2EmF":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the business is registered.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12businessTypeyA2EmF":{"name":"businessType","abstract":"\u003cp\u003eThe business type.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO4cityyA2EmF":{"name":"city","abstract":"\u003cp\u003eThe user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO06clientC2IdyA2EmF":{"name":"clientUserId","abstract":"\u003cp\u003eA client-defined identifier for the user. This is the unique ID assigned to the user","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO7countryyA2EmF":{"name":"country","abstract":"\u003cp\u003eThe user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO14countryOfBirthyA2EmF":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO20countryOfNationalityyA2EmF":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO9createdOnyA2EmF":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss).","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11dateOfBirthyA2EmF":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO16driversLicenseIdyA2EmF":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO5emailyA2EmF":{"name":"email","abstract":"\u003cp\u003eThe contact email address for the user account. This must be unique for your program,","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10employerIdyA2EmF":{"name":"employerId","abstract":"\u003cp\u003eThe user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO9firstNameyA2EmF":{"name":"firstName","abstract":"\u003cp\u003eThe user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO6genderyA2EmF":{"name":"gender","abstract":"\u003cp\u003eThe user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12governmentIdyA2EmF":{"name":"governmentId","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO16governmentIdTypeyA2EmF":{"name":"governmentIdType","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8languageyA2EmF":{"name":"language","abstract":"\u003cp\u003eThe preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8lastNameyA2EmF":{"name":"lastName","abstract":"\u003cp\u003eThe user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10middleNameyA2EmF":{"name":"middleName","abstract":"\u003cp\u003eThe user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12mobileNumberyA2EmF":{"name":"mobileNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10passportIdyA2EmF":{"name":"passportId","abstract":"\u003cp\u003eThe user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11phoneNumberyA2EmF":{"name":"phoneNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10postalCodeyA2EmF":{"name":"postalCode","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11profileTypeyA2EmF":{"name":"profileType","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12programTokenyA2EmF":{"name":"programToken","abstract":"\u003cp\u003eThe unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO13stateProvinceyA2EmF":{"name":"stateProvince","abstract":"\u003cp\u003eThe user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO6statusyA2EmF":{"name":"status","abstract":"\u003cp\u003eThe user account status.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8timeZoneyA2EmF":{"name":"timeZone","abstract":"\u003cp\u003eThe local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO5tokenyA2EmF":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO18verificationStatusyA2EmF":{"name":"verificationStatus","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status. A user may be required to verify their identity after","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html":{"name":"UserField","abstract":"\u003cp\u003eRepresentation of the user field type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/BusinessType.html":{"name":"BusinessType","abstract":"\u003cp\u003eThe business type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/BusinessContactRole.html":{"name":"BusinessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Gender.html":{"name":"Gender","abstract":"\u003cp\u003eRepresentation of the gender.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/ProfileType.html":{"name":"ProfileType","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Status.html":{"name":"Status","abstract":"\u003cp\u003eRepresentation of the user account status type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/VerificationStatus.html":{"name":"VerificationStatus","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s verification status type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactAddressLine1":{"name":"businessContactAddressLine1","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactAddressLine2":{"name":"businessContactAddressLine2","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactCity":{"name":"businessContactCity","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactCountry":{"name":"businessContactCountry","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s country,\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactPostalCode":{"name":"businessContactPostalCode","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC19businessContactRoleAC08BusinesseF0OSgvp":{"name":"businessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactStateProvince":{"name":"businessContactStateProvince","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe business name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessOperatingName":{"name":"businessOperatingName","abstract":"\u003cp\u003eThe business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the business is registered.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the business is registered.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC12businessTypeAC08BusinessE0OSgvp":{"name":"businessType","abstract":"\u003cp\u003eThe business type\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)city":{"name":"city","abstract":"\u003cp\u003eThe user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)clientUserId":{"name":"clientUserId","abstract":"\u003cp\u003eA client-defined identifier for the user. This is the unique ID assigned to the user on your system.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)country":{"name":"country","abstract":"\u003cp\u003eThe user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)createdOn":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)email":{"name":"email","abstract":"\u003cp\u003eThe contact email address for the user account. This must be unique for your program, so you cannot have two","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC6genderAC6GenderOSgvp":{"name":"gender","abstract":"\u003cp\u003eThe user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)language":{"name":"language","abstract":"\u003cp\u003eThe preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC11profileTypeAC07ProfileE0OSgvp":{"name":"profileType","abstract":"\u003cp\u003eThe user\u0026rsquo;s profile type. See \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser/ProfileType.html\"\u003eProfileType\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)programToken":{"name":"programToken","abstract":"\u003cp\u003eThe unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC6statusAC6StatusOSgvp":{"name":"status","abstract":"\u003cp\u003eThe user account status.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)timeZone":{"name":"timeZone","abstract":"\u003cp\u003eThe local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)token":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC18verificationStatusAC012VerificationE0OSgvp":{"name":"verificationStatus","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status. A user may be required to verify their identity after a certain","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(im)getField:":{"name":"getField(_:)","abstract":"\u003cp\u003eGets the field value\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletVenmoQueryParam.html#/s:14HyperwalletSDK0A15VenmoQueryParamC02toD0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletVenmoQueryParam"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC9accountIdyAESSF":{"name":"accountId(_:)","abstract":"\u003cp\u003eSets the accountId address\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount.html#/s:14HyperwalletSDK0A12VenmoAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletVenmoAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletVenmoAccount(py)accountId":{"name":"accountId","abstract":"\u003cp\u003eThe accountId as phone number.\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletVenmoAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11bankAccountyA2EmF":{"name":"bankAccount","abstract":"\u003cp\u003eWhen the transfer method is Bank Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO8bankCardyA2EmF":{"name":"bankCard","abstract":"\u003cp\u003eWhen the transfer method is Bank Card\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO13payPalAccountyA2EmF":{"name":"payPalAccount","abstract":"\u003cp\u003eWhen the transfer method is PayPal Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11wireAccountyA2EmF":{"name":"wireAccount","abstract":"\u003cp\u003eWhen the transfer method is Wire Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11prepaidCardyA2EmF":{"name":"prepaidCard","abstract":"\u003cp\u003eWhen the transfer method is Prepaid Card\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO12venmoAccountyA2EmF":{"name":"venmoAccount","abstract":"\u003cp\u003eWhen the transfer method is Venmo Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO10paperCheckyA2EmF":{"name":"paperCheck","abstract":"\u003cp\u003eWhen the transfer method is Paper Check\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO18ascendantCreatedOnyA2EmF":{"name":"ascendantCreatedOn","abstract":"\u003cp\u003eSort the result by ascendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO15ascendantStatusyA2EmF":{"name":"ascendantStatus","abstract":"\u003cp\u003eSort the result by ascendant status\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO19descendantCreatedOnyA2EmF":{"name":"descendantCreatedOn","abstract":"\u003cp\u003eSort the result by descendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO16descendantStatusyA2EmF":{"name":"descendantStatus","abstract":"\u003cp\u003eSort the result by descendant status\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eFilter by activated transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO11deActivatedyA2EmF":{"name":"deActivated","abstract":"\u003cp\u003eFilter by deActivated transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO7invalidyA2EmF":{"name":"invalid","abstract":"\u003cp\u003eFilter only invalid transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO12lostOrStolenyA2EmF":{"name":"lostOrStolen","abstract":"\u003cp\u003eFilter only lost or stolen prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO12preActivatedyA2EmF":{"name":"preActivated","abstract":"\u003cp\u003eFilter by preActivated prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO9suspendedyA2EmF":{"name":"suspended","abstract":"\u003cp\u003eFilter only suspended prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eFilter only verified transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC6statusSSSgvp":{"name":"status","abstract":"\u003cp\u003eReturns transfer method with this status.\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC4typeSSSgvp":{"name":"type","abstract":"\u003cp\u003eReturns transfer method of that type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html":{"name":"QueryStatus","abstract":"\u003cp\u003eRepresentation of the transfer method status\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the field\u0026rsquo;s sortable\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html":{"name":"QueryType","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11bankAccountyA2EmF":{"name":"bankAccount","abstract":"\u003cp\u003eWhen the transfer method is Bank Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO8bankCardyA2EmF":{"name":"bankCard","abstract":"\u003cp\u003eWhen the transfer method is Bank Card\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO13payPalAccountyA2EmF":{"name":"payPalAccount","abstract":"\u003cp\u003eWhen the transfer method is PayPal Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11wireAccountyA2EmF":{"name":"wireAccount","abstract":"\u003cp\u003eWhen the transfer method is Wire Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11prepaidCardyA2EmF":{"name":"prepaidCard","abstract":"\u003cp\u003eWhen the transfer method is Prepaid Card\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO12venmoAccountyA2EmF":{"name":"venmoAccount","abstract":"\u003cp\u003eWhen the transfer method is Venmo Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO10paperCheckyA2EmF":{"name":"paperCheck","abstract":"\u003cp\u003ewhen transfer method is paper check\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9createdOnyA2EmF":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime when the transfer method was created on.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6statusyA2EmF":{"name":"status","abstract":"\u003cp\u003eThe transfer method status transition.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO5tokenyA2EmF":{"name":"token","abstract":"\u003cp\u003eThe transfer method identifier.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08transferD7CountryyA2EmF":{"name":"transferMethodCountry","abstract":"\u003cp\u003eThe transfer method country.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08transferD8CurrencyyA2EmF":{"name":"transferMethodCurrency","abstract":"\u003cp\u003eThe transfer method currency.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO4typeyA2EmF":{"name":"type","abstract":"\u003cp\u003eThe transfer method type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12addressLine1yA2EmF":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12addressLine2yA2EmF":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO13bankAccountIdyA2EmF":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent. If you are providing an IBAN,","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO18bankAccountPurposeyA2EmF":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO23bankAccountRelationshipyA2EmF":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6bankIdyA2EmF":{"name":"bankId","abstract":"\u003cp\u003eThe bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8bankNameyA2EmF":{"name":"bankName","abstract":"\u003cp\u003eThe bank name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8branchIdyA2EmF":{"name":"branchId","abstract":"\u003cp\u003eThe branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10branchNameyA2EmF":{"name":"branchName","abstract":"\u003cp\u003eThe branch name\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO19businessContactRoleyA2EmF":{"name":"businessContactRole","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12businessNameyA2EmF":{"name":"businessName","abstract":"\u003cp\u003eThe name of the transfer method holder\u0026rsquo;s business\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO27businessRegistrationCountryyA2EmF":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the transfer method holder\u0026rsquo;s business is registered\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO22businessRegistrationIdyA2EmF":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier, as","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO33businessRegistrationStateProvinceyA2EmF":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12businessTypeyA2EmF":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO4cityyA2EmF":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO7countryyA2EmF":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO14countryOfBirthyA2EmF":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe country where bank account holder born\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20countryOfNationalityyA2EmF":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe Nationality of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11dateOfBirthyA2EmF":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16driversLicenseIdyA2EmF":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe LicenseId of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10employerIdyA2EmF":{"name":"employerId","abstract":"\u003cp\u003eThe employer Id of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9firstNameyA2EmF":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6genderyA2EmF":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12governmentIdyA2EmF":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16governmentIdTypeyA2EmF":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government IdType\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO25intermediaryBankAccountIdyA2EmF":{"name":"intermediaryBankAccountId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AccountId\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO28intermediaryBankAddressLine1yA2EmF":{"name":"intermediaryBankAddressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AddressLine1\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO28intermediaryBankAddressLine2yA2EmF":{"name":"intermediaryBankAddressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AddressLine2\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20intermediaryBankCityyA2EmF":{"name":"intermediaryBankCity","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s City\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO23intermediaryBankCountryyA2EmF":{"name":"intermediaryBankCountry","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s Country\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO18intermediaryBankIdyA2EmF":{"name":"intermediaryBankId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank Id\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20intermediaryBankNameyA2EmF":{"name":"intermediaryBankName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank Name\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO26intermediaryBankPostalCodeyA2EmF":{"name":"intermediaryBankPostalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary PostalCode:\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO29intermediaryBankStateProvinceyA2EmF":{"name":"intermediaryBankStateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s State and Province\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8lastNameyA2EmF":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10middleNameyA2EmF":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12mobileNumberyA2EmF":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s mobile number\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10passportIdyA2EmF":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport Id\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11phoneNumberyA2EmF":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10postalCodeyA2EmF":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11profileTypeyA2EmF":{"name":"profileType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO13stateProvinceyA2EmF":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16wireInstructionsyA2EmF":{"name":"wireInstructions","abstract":"\u003cp\u003eThe wire transfer instructions\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9cardBrandyA2EmF":{"name":"cardBrand","abstract":"\u003cp\u003eThe card brand.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10cardNumberyA2EmF":{"name":"cardNumber","abstract":"\u003cp\u003eThe 16-digit card number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8cardTypeyA2EmF":{"name":"cardType","abstract":"\u003cp\u003eThe bank card type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO3cvvyA2EmF":{"name":"cvv","abstract":"\u003cp\u003eThe card security code which is embossed or printed on the card.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12dateOfExpiryyA2EmF":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe expiration date for the card (YYYY-MM).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16primaryCardTokenyA2EmF":{"name":"primaryCardToken","abstract":"\u003cp\u003eThe primary card token\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO5emailyA2EmF":{"name":"email","abstract":"\u003cp\u003eThe email address associated with the PayPal account.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9accountIdyA2EmF":{"name":"accountId","abstract":"\u003cp\u003eThe mobile number associated with the Venmo account.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11cardPackageyA2EmF":{"name":"cardPackage","abstract":"\u003cp\u003eThe card\u0026rsquo;s package\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9userTokenyA2EmF":{"name":"userToken","abstract":"\u003cp\u003eThe user token\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08shippingD0yA2EmF":{"name":"shippingMethod","abstract":"\u003cp\u003eThe shipping method\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html":{"name":"TransferMethodField","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s field type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod/TransferMethodType.html":{"name":"TransferMethodType","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)init":{"name":"init()","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletTransferMethod\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)getField:":{"name":"getField(_:)","abstract":"\u003cp\u003eGets the field value\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)setFieldWithKey:value:":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the key\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)createdOn":{"name":"createdOn","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s created time\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)profileType":{"name":"profileType","abstract":"\u003cp\u003eThe transfer method holder\u0026rsquo;s profile type, e.g. INDIVIDUAL or BUSINESS.\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)status":{"name":"status","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s status\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)token":{"name":"token","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s token\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)transferMethodCountry":{"name":"transferMethodCountry","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s country\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)transferMethodCurrency":{"name":"transferMethodCurrency","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s currency\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)type":{"name":"type","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletPrepaidCardQueryParam.html#/s:14HyperwalletSDK0A21PrepaidCardQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPrepaidCardQueryParam"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC25transferMethodProfileTypeAESS_tcfc":{"name":"init(transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC11cardPackageyAESSF":{"name":"cardPackage(_:)","abstract":"\u003cp\u003eSets the card package\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC9userTokenyAESSF":{"name":"userToken(_:)","abstract":"\u003cp\u003eSets userToken for an instant issue card\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard.html#/s:14HyperwalletSDK0A11PrepaidCardC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardType":{"name":"cardType","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardPackage":{"name":"cardPackage","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s package\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardNumber":{"name":"cardNumber","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s number\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardBrand":{"name":"cardBrand","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s brand\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s expiry date\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)primaryCardToken":{"name":"primaryCardToken","abstract":"\u003cp\u003eThe primary prepaid card\u0026rsquo;s token\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)userToken":{"name":"userToken","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s user token (instant issue cards only)\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPayPalAccountQueryParam.html#/s:14HyperwalletSDK0A23PayPalAccountQueryParamC02toF0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPayPalAccountQueryParam"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC21transferMethodCountry0gH8Currency0gH11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5emailyAESSF":{"name":"email(_:)","abstract":"\u003cp\u003eSets the email address\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount.html#/s:14HyperwalletSDK0A13PayPalAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPayPalAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPayPalAccount(py)email":{"name":"email","abstract":"\u003cp\u003eThe email address.\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPayPalAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPaperCheckQueryParam.html#/s:14HyperwalletSDK0A20PaperCheckQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPaperCheckQueryParam"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletPaperCheck.Builder\u003c/code\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileType0fgK0AESS_S3Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:transferMethodType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletPaperCheck.Builder\u003c/code\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC23bankAccountRelationshipyAESSF":{"name":"bankAccountRelationship(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC14shippingMethodyAESSF":{"name":"shippingMethod(_:)","abstract":"\u003cp\u003eSets the shipping method for paper check.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC6genderyAESSF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC19businessContactRoleyAESSF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12businessTypeyAESSF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck.html#/s:14HyperwalletSDK0A10PaperCheckC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)bankAccountRelationship":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)city":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)country":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)shippingMethod":{"name":"shippingMethod","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessType":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s nationality country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)gender":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletBankCardQueryParam.html#/s:14HyperwalletSDK0A18BankCardQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletBankCardQueryParam"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankCard.Builder\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankCard.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC10cardNumberyAESSF":{"name":"cardNumber(_:)","abstract":"\u003cp\u003eSets the card number\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC3cvvyAESSF":{"name":"cvv(_:)","abstract":"\u003cp\u003eSets the card security code which is embossed or printed on the card.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC12dateOfExpiryyAESSF":{"name":"dateOfExpiry(_:)","abstract":"\u003cp\u003eSets the expiration date.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard.html#/s:14HyperwalletSDK0A8BankCardC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardBrand":{"name":"cardBrand","abstract":"\u003cp\u003eThe card brand\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardNumber":{"name":"cardNumber","abstract":"\u003cp\u003eThe card number\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardType":{"name":"cardType","abstract":"\u003cp\u003eThe card type\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe expiration date.\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankAccountQueryParam.html#/s:14HyperwalletSDK0A21BankAccountQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletBankAccountQueryParam"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankAccount.Builder\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileType0fgK0AESS_S3Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:transferMethodType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankAccount.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD2IdyAESSF":{"name":"bankAccountId(_:)","abstract":"\u003cp\u003eSets the bank account number, IBAN or equivalent. If you are providing an IBAN, the first two","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD7PurposeyAESSF":{"name":"bankAccountPurpose(_:)","abstract":"\u003cp\u003eSets the purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD12RelationshipyAESSF":{"name":"bankAccountRelationship(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC6bankIdyAESSF":{"name":"bankId(_:)","abstract":"\u003cp\u003eSets the bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8bankNameyAESSF":{"name":"bankName(_:)","abstract":"\u003cp\u003eSets the bank name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8branchIdyAESSF":{"name":"branchId(_:)","abstract":"\u003cp\u003eSets the branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10branchNameyAESSF":{"name":"branchName(_:)","abstract":"\u003cp\u003eSets the branch name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC19businessContactRoleyAESSF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12businessTypeyAESSF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC6genderyAESSF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediarycD2IdyAESSF":{"name":"intermediaryBankAccountId(_:)","abstract":"\u003cp\u003eSets the account number at the intermediary bank.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC12AddressLine1yAESSF":{"name":"intermediaryBankAddressLine1(_:)","abstract":"\u003cp\u003eSets the intermediary bank street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC12AddressLine2yAESSF":{"name":"intermediaryBankAddressLine2(_:)","abstract":"\u003cp\u003eSets the intermediary bank street address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC4CityyAESSF":{"name":"intermediaryBankCity(_:)","abstract":"\u003cp\u003eSets the intermediary bank city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC7CountryyAESSF":{"name":"intermediaryBankCountry(_:)","abstract":"\u003cp\u003eSets the intermediary bank country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC2IdyAESSF":{"name":"intermediaryBankId(_:)","abstract":"\u003cp\u003eSets the intermediary bank\u0026rsquo;s 11-character SWIFT code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC4NameyAESSF":{"name":"intermediaryBankName(_:)","abstract":"\u003cp\u003eSets the intermediary bank name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC10PostalCodeyAESSF":{"name":"intermediaryBankPostalCode(_:)","abstract":"\u003cp\u003eSets the intermediary bank postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC13StateProvinceyAESSF":{"name":"intermediaryBankStateProvince(_:)","abstract":"\u003cp\u003eSets the intermediary bank state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC4typeyAESSF":{"name":"type(_:)","abstract":"\u003cp\u003eSets the type of transfer method, e.g. BANK_ACCOUNT or WIRE_ACCOUNT.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16wireInstructionsyAESSF":{"name":"wireInstructions(_:)","abstract":"\u003cp\u003eSets wire transfer instructions.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount.html#/s:14HyperwalletSDK0A11BankAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountId":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent. If you are providing an IBAN, the first two","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountPurpose":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountRelationship":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankId":{"name":"bankId","abstract":"\u003cp\u003eThe bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankName":{"name":"bankName","abstract":"\u003cp\u003eThe bank name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)branchId":{"name":"branchId","abstract":"\u003cp\u003eThe branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)branchName":{"name":"branchName","abstract":"\u003cp\u003eThe branch name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessContactRole":{"name":"businessContactRole","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessType":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)city":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)country":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s nationality country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)gender":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAccountId":{"name":"intermediaryBankAccountId","abstract":"\u003cp\u003eThe account number at the intermediary bank.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAddressLine1":{"name":"intermediaryBankAddressLine1","abstract":"\u003cp\u003eThe intermediary bank street address.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAddressLine2":{"name":"intermediaryBankAddressLine2","abstract":"\u003cp\u003eThe intermediary bank street address, second line.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankCity":{"name":"intermediaryBankCity","abstract":"\u003cp\u003eThe intermediary bank city.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankCountry":{"name":"intermediaryBankCountry","abstract":"\u003cp\u003eThe intermediary bank country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankId":{"name":"intermediaryBankId","abstract":"\u003cp\u003eThe intermediary bank\u0026rsquo;s 11-character SWIFT code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankName":{"name":"intermediaryBankName","abstract":"\u003cp\u003eThe intermediary bank name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankPostalCode":{"name":"intermediaryBankPostalCode","abstract":"\u003cp\u003eThe intermediary bank postal code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankStateProvince":{"name":"intermediaryBankStateProvince","abstract":"\u003cp\u003eThe intermediary bank state, province or region.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)wireInstructions":{"name":"wireInstructions","abstract":"\u003cp\u003eThe wire transfer instructions\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC06clientC2IdSSSgvp":{"name":"clientTransferId","abstract":"\u003cp\u003eA value that identifies the client transfer id.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC16destinationTokenSSSgvp":{"name":"destinationToken","abstract":"\u003cp\u003eA value that identifies the destination token.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC11sourceTokenSSSgvp":{"name":"sourceToken","abstract":"\u003cp\u003eA value that identifies the source token.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO18ascendantCreatedOnyA2EmF":{"name":"ascendantCreatedOn","abstract":"\u003cp\u003eSort the result by ascendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO13ascendantTypeyA2EmF":{"name":"ascendantType","abstract":"\u003cp\u003eSort the result by ascendant type\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO19descendantCreatedOnyA2EmF":{"name":"descendantCreatedOn","abstract":"\u003cp\u003eSort the result by descendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO14descendantTypeyA2EmF":{"name":"descendantType","abstract":"\u003cp\u003eSort the result by descendant type\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eA value that identifies the user receipts currency.\u003c/p\u003e","parent_name":"HyperwalletReceiptQueryParam"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the field\u0026rsquo;s sortable\u003c/p\u003e","parent_name":"HyperwalletReceiptQueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC12createdAfter10Foundation4DateVSgvp":{"name":"createdAfter","abstract":"\u003cp\u003eReturns user receipts created after this datetime.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC13createdBefore10Foundation4DateVSgvp":{"name":"createdBefore","abstract":"\u003cp\u003eReturns user receipts created before this datetime.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC5limitSiSgvp":{"name":"limit","abstract":"\u003cp\u003eThe maximum number of records that will be returned per page\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC6offsetSiSgvp":{"name":"offset","abstract":"\u003cp\u003eThe number of records to skip. If no filters are applied, records will be skipped from the beginning","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC6sortBySSSgvp":{"name":"sortBy","abstract":"\u003cp\u003eThe user receipts attribute to sort the result set by.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamCACycfc":{"name":"init()","abstract":"\u003cp\u003eCreates a new instance of \u003ccode\u003eQueryParam\u003c/code\u003e]\u003c/p\u003e","parent_name":"QueryParam"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the sortable fields\u003c/p\u003e","parent_name":"HyperwalletPrepaidCardBalanceQueryParam"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam.html#/s:14HyperwalletSDK0A17BalanceQueryParamC8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eA value that identifies the currency of balance\u003c/p\u003e","parent_name":"HyperwalletBalanceQueryParam"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the sortable fields\u003c/p\u003e","parent_name":"HyperwalletBalanceQueryParam"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cpy)shared":{"name":"shared","abstract":"\u003cp\u003eReturns the previously initialized instance of the Hyperwallet Core SDK interface object\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cm)clearInstance":{"name":"clearInstance()","abstract":"\u003cp\u003eClears Hyperwallet instance.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cm)setup:":{"name":"setup(_:)","abstract":"\u003cp\u003eCreates a new instance of the Hyperwallet Core SDK interface object. If a previously created instance exists,","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16getConfiguration10completionyyAA0D0VSg_AA0A9ErrorTypeOSgtc_tF":{"name":"getConfiguration(completion:)","abstract":"\u003cp\u003eRetrieves a configuration if one exists - else using the authentication token from the provider,","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C7getUser10completionyyAA0aD0CSg_AA0A9ErrorTypeOSgtc_tF":{"name":"getUser(completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17createBankAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createBankAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16createPaperCheck7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createPaperCheck(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14createBankCard7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createBankCard(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19createPayPalAccount7account10completionyAA0adeF0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createPayPalAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14createTransfer8transfer10completionyAA0aD0V_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createTransfer(transfer:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18createVenmoAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createVenmoAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C21deactivateBankAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateBankAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C20deactivatePaperCheck19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivatePaperCheck(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18deactivateBankCard19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateBankCard(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23deactivatePayPalAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivatePayPalAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C22deactivateVenmoAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateVenmoAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16scheduleTransfer13transferToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"scheduleTransfer(transferToken:notes:completion:)","abstract":"\u003cp\u003eSchedules the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14getBankAccount19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getBankAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13getPaperCheck19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPaperCheck(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C11getBankCard19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getBankCard(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16getPayPalAccount19transferMethodToken10completionySS_yAA0adeF0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPayPalAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14getPrepaidCard19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPrepaidCard(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C11getTransfer13transferToken10completionySS_yAA0aD0VSg_AA0A9ErrorTypeOSgtctF":{"name":"getTransfer(transferToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C15getVenmoAccount19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getVenmoAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listBankAccounts10queryParam10completionyAA0ad12AccountQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listBankAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003es for the User associated with the authentication token","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C15listPaperChecks10queryParam10completionyAA0ad10CheckQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPaperChecks(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003es for the User associated with the authentication token","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13listBankCards10queryParam10completionyAA0ad9CardQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listBankCards(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18listPayPalAccounts10queryParam10completionyAA0ade12AccountQueryH0CSg_yAA0A8PageListVyAA0adeJ0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPayPalAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19listTransferMethods10queryParam10completionyAA0ad11MethodQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listTransferMethods(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletTransferMethod.html\"\u003eHyperwalletTransferMethod\u003c/a\u003e\u003c/code\u003e (Bank Account, Bank Card, PayPay Account, Prepaid Card, Paper Checks)","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listPrepaidCards10queryParam10completionyAA0ad9CardQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCards(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17listVenmoAccounts10queryParam10completionyAA0ad5QueryG0CSg_yAA0A8PageListVyAA0aD7AccountCGSg_AA0A9ErrorTypeOSgtctF":{"name":"listVenmoAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listUserReceipts10queryParam10completionyAA0a12ReceiptQueryG0CSg_yAA0A8PageListVyAA0aI0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listUserReceipts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of receipts for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23listPrepaidCardReceipts07prepaidE5Token10queryParam10completionySS_AA0a12ReceiptQueryJ0CSgyAA0A8PageListVyAA0aL0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCardReceipts(prepaidCardToken:queryParam:completion:)","abstract":"\u003cp\u003eThe filtering of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletReceipt.html\"\u003eHyperwalletReceipt\u003c/a\u003e\u003c/code\u003e will be based on the criteria specified within the","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13listTransfers10queryParam10completionyAA0a13TransferQueryF0CSg_yAA0A8PageListVyAA0aH0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listTransfers(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of transfers for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C41retrieveTransferMethodConfigurationFields7request10completionyAA0adeF10FieldQueryV_yAA0adefJ0_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodConfigurationFields(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method configuration field set for the User that is associated with the authentication","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C47retrieveTransferMethodUpdateConfigurationFields7request10completionyAA0adefG10FieldQueryV_yAA0adefgK0_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodUpdateConfigurationFields(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method update configuration fields set for the User that is associated with","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C39retrieveTransferMethodConfigurationKeys7request10completionyAA0adefG5QueryV_yAA0adeF3Key_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodConfigurationKeys(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method configuration key set for the User that is associated","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C49retrieveTransferMethodTypesFeesAndProcessingTimes7request10completionyAA0adefghiJ5QueryV_yAA0adE16ConfigurationKey_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodTypesFeesAndProcessingTimes(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method types, processing times, and fees for the User that is associated","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17updateBankAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateBankAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16updatePaperCheck7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updatePaperCheck(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14updateBankCard7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateBankCard(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19updatePayPalAccount7account10completionyAA0adeF0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updatePayPalAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18updateVenmoAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateVenmoAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listUserBalances10queryParam10completionyAA0a12BalanceQueryG0CSg_yAA0A8PageListVyAA0aI0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listUserBalances(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of balances for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23listPrepaidCardBalances07prepaidE5Token10queryParam10completionySS_AA0ade12BalanceQueryJ0CSgyAA0A8PageListVyAA0aL0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCardBalances(prepaidCardToken:queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of prepaid card balances for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html":{"name":"Hyperwallet","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwallet\u003c/code\u003e class is an iOS specific implementation of the"},"Classes/HyperwalletBalanceQueryParam.html":{"name":"HyperwalletBalanceQueryParam","abstract":"\u003cp\u003eRepresentation of the balance QueryParam fields.\u003c/p\u003e"},"Classes/HyperwalletPrepaidCardBalanceQueryParam.html":{"name":"HyperwalletPrepaidCardBalanceQueryParam","abstract":"\u003cp\u003eRepresentation of the prepaid card balance QueryParam fields.\u003c/p\u003e"},"Classes/QueryParam.html":{"name":"QueryParam","abstract":"\u003cp\u003eRepresentation of the common query parameters.\u003c/p\u003e"},"Classes/HyperwalletReceiptQueryParam.html":{"name":"HyperwalletReceiptQueryParam","abstract":"\u003cp\u003eRepresentation of the user receipts QueryParam fields.\u003c/p\u003e"},"Classes/HyperwalletTransferQueryParam.html":{"name":"HyperwalletTransferQueryParam","abstract":"\u003cp\u003eRepresentation of the user transfers QueryParams fields.\u003c/p\u003e"},"Classes/HyperwalletBankAccount.html":{"name":"HyperwalletBankAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s bank account\u003c/p\u003e"},"Classes/HyperwalletBankAccountQueryParam.html":{"name":"HyperwalletBankAccountQueryParam","abstract":"\u003cp\u003eRepresentation of the bank account query parameters.\u003c/p\u003e"},"Classes/HyperwalletBankCard.html":{"name":"HyperwalletBankCard","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s bank card\u003c/p\u003e"},"Classes/HyperwalletBankCardQueryParam.html":{"name":"HyperwalletBankCardQueryParam","abstract":"\u003cp\u003eRepresentation of the bank card query parameters.\u003c/p\u003e"},"Classes/HyperwalletPaperCheck.html":{"name":"HyperwalletPaperCheck","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s paper check\u003c/p\u003e"},"Classes/HyperwalletPaperCheckQueryParam.html":{"name":"HyperwalletPaperCheckQueryParam","abstract":"\u003cp\u003eRepresentation of the paper check query parameters.\u003c/p\u003e"},"Classes/HyperwalletPayPalAccount.html":{"name":"HyperwalletPayPalAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s PayPal account\u003c/p\u003e"},"Classes/HyperwalletPayPalAccountQueryParam.html":{"name":"HyperwalletPayPalAccountQueryParam","abstract":"\u003cp\u003eRepresentation of the PayPal account query parameters.\u003c/p\u003e"},"Classes/HyperwalletPrepaidCard.html":{"name":"HyperwalletPrepaidCard","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s Prepaid card account\u003c/p\u003e"},"Classes/HyperwalletPrepaidCardQueryParam.html":{"name":"HyperwalletPrepaidCardQueryParam","abstract":"\u003cp\u003eRepresentation of the prepaid card query parameters.\u003c/p\u003e"},"Classes/HyperwalletTransferMethod.html":{"name":"HyperwalletTransferMethod","abstract":"\u003cp\u003eRepresentation of the transfer method (bank account, bank card, PayPal account, prepaid card, paper check).\u003c/p\u003e"},"Classes/HyperwalletTransferMethodQueryParam.html":{"name":"HyperwalletTransferMethodQueryParam","abstract":"\u003cp\u003eRepresentation of the common transfer method\u0026rsquo;s query parameters.\u003c/p\u003e"},"Classes/HyperwalletVenmoAccount.html":{"name":"HyperwalletVenmoAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s Venmo account\u003c/p\u003e"},"Classes/HyperwalletVenmoQueryParam.html":{"name":"HyperwalletVenmoQueryParam","abstract":"\u003cp\u003eRepresentation of the common Venmo\u0026rsquo;s query parameters.\u003c/p\u003e"},"Classes/HyperwalletUser.html":{"name":"HyperwalletUser","abstract":"\u003cp\u003eRepresentation of the Hyperwallet\u0026rsquo;s user.\u003c/p\u003e"},"changelog.html":{"name":"CHANGELOG"},"readme.html":{"name":"README"},"Guides.html":{"name":"Guides","abstract":"\u003cp\u003eThe following guides are available globally.\u003c/p\u003e"},"Classes.html":{"name":"Classes","abstract":"\u003cp\u003eThe following classes are available globally.\u003c/p\u003e"},"Enums.html":{"name":"Enumerations","abstract":"\u003cp\u003eThe following enumerations are available globally.\u003c/p\u003e"},"Extensions.html":{"name":"Extensions","abstract":"\u003cp\u003eThe following extensions are available globally.\u003c/p\u003e"},"Protocols.html":{"name":"Protocols","abstract":"\u003cp\u003eThe following protocols are available globally.\u003c/p\u003e"},"Structs.html":{"name":"Structures","abstract":"\u003cp\u003eThe following structures are available globally.\u003c/p\u003e"}}
\ No newline at end of file
diff --git a/docsets/HyperwalletSDK.docset/Contents/Resources/docSet.dsidx b/docsets/HyperwalletSDK.docset/Contents/Resources/docSet.dsidx
new file mode 100644
index 00000000..3ea5a339
Binary files /dev/null and b/docsets/HyperwalletSDK.docset/Contents/Resources/docSet.dsidx differ
diff --git a/docsets/HyperwalletSDK.tgz b/docsets/HyperwalletSDK.tgz
new file mode 100644
index 00000000..344c0a90
Binary files /dev/null and b/docsets/HyperwalletSDK.tgz differ
diff --git a/img/carat.png b/img/carat.png
new file mode 100755
index 00000000..29d2f7fd
Binary files /dev/null and b/img/carat.png differ
diff --git a/img/dash.png b/img/dash.png
new file mode 100755
index 00000000..6f694c7a
Binary files /dev/null and b/img/dash.png differ
diff --git a/img/gh.png b/img/gh.png
new file mode 100755
index 00000000..628da97c
Binary files /dev/null and b/img/gh.png differ
diff --git a/img/spinner.gif b/img/spinner.gif
new file mode 100644
index 00000000..e3038d0a
Binary files /dev/null and b/img/spinner.gif differ
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..875b1ab4
--- /dev/null
+++ b/index.html
@@ -0,0 +1,1033 @@
+
+
+
+ HyperwalletSDK Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
NOTE: This is a beta product available for use in your mobile app. If you are interested in using this product, please notify your Relationship Manager and / or Project Manager to support you during the integration process.
+
+
Welcome to Hyperwallet’s iOS SDK. This library will help you create transfer methods in your iOS app, such as bank account, PayPal account, etc. See our iOS Integration Guide to get started!
+
+
Note that this SDK is geared towards those who only require backend data, which means you will have to build your own UI.
+
+
We also provide an out-of-the-box Hyperwallet iOS UI SDK for you if you decide not to build your own UI.
+
Prerequisites
+
+
+
A Hyperwallet merchant account
+
Set Up your server to manage the user’s authentication process on the Hyperwallet platform. See the Authentication section for more information.
After you’re done installing the SDK, you need to initialize an instance in order to utilize core SDK functions. Also, you need to provide a HyperwalletAuthenticationTokenProvider object to retrieve an authentication token.
Your server side should be able to send a POST request to Hyperwallet endpoint /rest/v3/users/{user-token}/authentication-token to retrieve an authentication token.
+Then, you need to provide a class (an authentication provider) which implements HyperwalletAuthenticationTokenProvider to retrieve an authentication token from your server.
+
+
An example implementation using the URLRequest from Swift Foundation :
letpayPalAccount=HyperwalletPayPalAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.createPayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account creation
+})
+
+
Get PayPal Account
+
Hyperwallet.shared.getPayPalAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPayPalAccount? in this case) will contain information about the user’s PayPal account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update PayPal Account
+
letpayPalAccount=HyperwalletPayPalAccount.Builder(token:"trm-12345")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.updatePayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account updating
+})
+
+
Deactivate PayPal Account
+
Hyperwallet.shared.deactivatePayPalAccount(transferMethodToken:"trm-12345",notes:"deactivate PayPal account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account deactivation
+})
+
+
List PayPal Account
+
letpayPalQueryParam=HyperwalletPayPalAccountQueryParam()
+payPalQueryParam.status=HyperwalletPayPalAccountQueryParam.QueryStatus.activated.rawValue
+payPalQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPayPalAccounts(queryParam:payPalQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPayPalAccount>? in this case) will contain information about or nil if not exist.
+ ifletpayPalAccounts=result?.data{
+ forpayPalAccountinpayPalAccounts{
+ print(payPalAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.createVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account creation
+})
+
+
Get Venmo Account
+
Hyperwallet.shared.getVenmoAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletVenmoAccount? in this case) will contain information about the user’s Venmo account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(token:"trm-12345")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.updateVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account updating
+})
+
+
Deactivate Venmo Account
+
Hyperwallet.shared.deactivateVenmoAccount(transferMethodToken:"trm-12345",notes:"deactivate Venmo account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account deactivation
+})
+
+
List Venmo Account
+
letvenmoQueryParam=HyperwalletVenmoQueryParam()
+venmoQueryParam.status=HyperwalletVenmoQueryParam.QueryStatus.activated.rawValue
+venmoQueryParam.sortBy=HyperwalletVenmoQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listVenmoAccounts(queryParam:venmoQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletVenmoAccount>? in this case) will contain information about or nil if not exist.
+ ifletvenmoAccounts=result?.data{
+ forvenmoAccountinvenmoAccounts{
+ print(venmoAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Bank Account
+
letbankAccount=HyperwalletBankAccount.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.bankAccountId("12345")
+.branchId("123456")
+.bankAccountPurpose(.checking)
+.build()
+
+Hyperwallet.shared.createBankAccount(account:bankAccount,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletBankAccount in this case) payload will contain information about the account created
+ print(result)
+})
+
+
Get Bank Account
+
Hyperwallet.shared.getBankAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Account
+
letbankAccount=HyperwalletBankAccount
+.Builder(token:"12345")
+.branchId("026009593")
+.build()
+
+Hyperwallet.shared.updateBankAccount(account:bankAccount,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankAccount in this case) payload will contain information about the account updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account updating
+})
+
+
Deactivate Bank Account
+
Hyperwallet.shared.deactivateBankAccount(transferMethodToken:"trm-12345",notes:"deactivate bank account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account deactivation
+})
+
+
List Bank Account
+
letbankAccountQueryParam=HyperwalletBankAccountQueryParam()
+bankAccountQueryParam.status=HyperwalletBankAccountQueryParam.QueryStatus.activated.rawValue
+bankAccountQueryParam.sortBy=HyperwalletBankAccountQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankAccounts(queryParam:bankAccountQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankAccount>? in this case) will contain information about or nil if not exist.
+ ifletbankAccounts=result?.data{
+ forbankAccountinbankAccounts{
+ print(bankAccount.token??"")
+ }
+ }
+}
+
+
Create Paper Check
+
letpaperCheck=HyperwalletPaperCheck.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.createPaperCheck(account:paperCheck,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check created
+ print(result)
+})
+
+
Get Paper Check
+
Hyperwallet.shared.getPaperCheck(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPaperCheck? in this case) will contain information about the user’s paper check or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Paper Check
+
letpaperCheck=HyperwalletPaperCheck
+.Builder(token:"12345")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.updatePaperCheck(account:paperCheck,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure while updating
+})
+
+
Deactivate Paper Check
+
Hyperwallet.shared.deactivatePaperCheck(transferMethodToken:"trm-12345",notes:"deactivate paper check",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Paper Check
+
letpaperCheckQueryParam=HyperwalletPaperCheckQueryParam()
+paperCheckQueryParam.status=HyperwalletPaperCheckQueryParam.QueryStatus.activated.rawValue
+paperCheckQueryParam.sortBy=HyperwalletPaperCheckQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPaperChecks(queryParam:paperCheckQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPaperCheck>? in this case) will contain information about or nil if not exist.
+ ifletpaperChecks=result?.data{
+ forpaperCheckinpaperChecks{
+ print(paperCheck.token??"")
+ }
+ }
+}
+
+
Create Bank Card
+
letbankCard=HyperwalletBankCard.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.cardNumber("1234123412341234")
+.dateOfExpiry("2022-12")
+.cvv("123")
+.build()
+
+Hyperwallet.shared.createBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card creation
+})
+
+
Get Bank Card
+
Hyperwallet.shared.getBankCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Card
+
letbankCard=HyperwalletBankCard
+.Builder(token:"trm-12345")
+.dateOfExpiry("2022-12")
+.build()
+
+Hyperwallet.shared.updateBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card updating
+})
+
+
Deactivate Bank Card
+
Hyperwallet.shared.deactivateBankCard(transferMethodToken:"trm-12345",notes:"deactivate bank card",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card deactivation
+})
+
+
List Bank Card
+
letbankCardQueryParam=HyperwalletBankCardQueryParam()
+bankCardQueryParam.status=HyperwalletBankCardQueryParam.QueryStatus.activated.rawValue
+bankCardQueryParam.sortBy=HyperwalletBankCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankCards(queryParam:bankCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankCard>? in this case) will contain information about or nil if not exist.
+ ifletbankCards=result?.data{
+ forbankCardinbankCards{
+ print(bankCard.token??"")
+ }
+ }
+}
+
+
Get Prepaid Card
+
Hyperwallet.shared.getPrepaidCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPrepaidCard? in this case) will contain information about the user’s prepaid card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Prepaid Cards
+
letprepaidCardQueryParam=HyperwalletPrepaidCardQueryParam()
+prepaidCardQueryParam.status=HyperwalletPrepaidCardQueryParam.QueryStatus.activated.rawValue
+prepaidCardQueryParam.sortBy=HyperwalletPrepaidCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPrepaidCards(queryParam:prepaidCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPrepaidCard>? in this case) will contain information about or nil if not exist.
+ ifletprepaidCards=result?.data{
+ forprepaidCardinprepaidCards{
+ print(prepaidCard.token)
+ }
+ }
+}
+
+
List Prepaid Card Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2016-12-01T00:00:00")
+
+Hyperwallet.shared.listPrepaidCardReceipts(prepaidCardToken:prepaidCardToken,
+ queryParam:receiptQueryParam,
+ completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List User Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2018-12-01T00:00:00")
+receiptQueryParam.currency="USD"
+receiptQueryParam.sortBy=HyperwalletReceiptQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserReceipts(queryParam:receiptQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List Transfer Methods
+
lettransferMethodQueryParam=HyperwalletTransferMethodQueryParam()
+transferMethodQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listTransferMethods(queryParam:transferMethodQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransferMethod>? in this case) will contain information about or nil if not exist.
+ iflettransferMethods=result?.data{
+ fortransferMethodintransferMethods{
+ print(transferMethod.token??"")
+ }
+ }
+}
+
+
Create Transfer
+
lettransfer=HyperwalletTransfer.Builder(clientTransferId:"6712348070812",
+ sourceToken:"source-token",
+ destinationToken:"destination-token")
+ .sourceAmount("100")
+ .sourceCurrency("CAD")
+ .destinationAmount("62.29")
+ .destinationCurrency("USD")
+ .memo("TransferClientId56387")
+ .notes("Partial-Balance Transfer")
+ .build()
+
+Hyperwallet.shared.createTransfer(transfer:transfer,completion:{(result,error)in
+ //Code to handle successful response or error
+ //On successfull creation, response (HyperwalletTransfer in this case) will contain information about the transfer
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Schedule Transfer
+
Hyperwallet.shared.scheduleTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ //Code to handle successful response or error
+ // On successful scheduling, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Get Transfer
+
Hyperwallet.shared.getTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ // On success, response (HyperwalletTransfer? in this case) will contain information about the transfer or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Transfers
+
Hyperwallet.shared.listTransfers{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransfer>? in this case) will contain information about or nil if not exist.
+ iflettransfers=result?.data{
+ fortransferintransfers{
+ print(transfer.token??"")
+ }
+ }
+})
+
+
List User Balances
+
letbalanceQueryParam=HyperwalletBalanceQueryParam()
+balanceQueryParam.currency="USD"
+balanceQueryParam.sortBy=HyperwalletBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserBalances(queryParam:balanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
List Prepaid Card Balances
+
letprepaidCardBalanceQueryParam=HyperwalletPrepaidCardBalanceQueryParam()
+prepaidCardBalanceQueryParam.sortBy=HyperwalletPrepaidCardBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listPrepaidCardBalances(prepaidCardToken:"trm-1234",queryParam:prepaidCardBalanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
Transfer Method Configurations
+
Get countries, currencies
+
letkeysQuery=HyperwalletTransferMethodConfigurationKeysQuery()
+
+Hyperwallet.shared.retrieveTransferMethodConfigurationKeys(request:keysQuery){(result,error)in
+
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+ // Get countries
+ letcountries=result.countries()
+
+ // Get currencies based on the first available country code
+ varcurrencies:[HyperwalletCurrency]?
+ ifletcountries=result.countries(),!countries.isEmpty{
+ currencies=result.currencies(from:countries.first!.code)
+ }
+
+ print(countries)
+ print(currencies)
+}
+
+
Get transfer method types, fees and processing times for Country and Currency
+
letcountry="CA"
+letcurrency="CAD"
+letkeysQuery=HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery(country:country,currency:currency)
+
+Hyperwallet
+ .shared
+ .retrieveTransferMethodTypesFeesAndProcessingTimes(request:keysQuery){(result,error)in
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+
+ // Get transfer method types based on the first country code and its first currency code
+ transferMethodTypes=result.transferMethodTypes(countryCode:country,currencyCode:currency)
+ print(transferMethodTypes)
+ print(transferMethodTypes?.first?.fees)
+ print(transferMethodTypes?.first?.processingTimes)
+}
+
NOTE: This is a beta product available for use in your mobile app. If you are interested in using this product, please notify your Relationship Manager and / or Project Manager to support you during the integration process.
+
+
Welcome to Hyperwallet’s iOS SDK. This library will help you create transfer methods in your iOS app, such as bank account, PayPal account, etc. See our iOS Integration Guide to get started!
+
+
Note that this SDK is geared towards those who only require backend data, which means you will have to build your own UI.
+
+
We also provide an out-of-the-box Hyperwallet iOS UI SDK for you if you decide not to build your own UI.
+
Prerequisites
+
+
+
A Hyperwallet merchant account
+
Set Up your server to manage the user’s authentication process on the Hyperwallet platform. See the Authentication section for more information.
After you’re done installing the SDK, you need to initialize an instance in order to utilize core SDK functions. Also, you need to provide a HyperwalletAuthenticationTokenProvider object to retrieve an authentication token.
Your server side should be able to send a POST request to Hyperwallet endpoint /rest/v3/users/{user-token}/authentication-token to retrieve an authentication token.
+Then, you need to provide a class (an authentication provider) which implements HyperwalletAuthenticationTokenProvider to retrieve an authentication token from your server.
+
+
An example implementation using the URLRequest from Swift Foundation :
letpayPalAccount=HyperwalletPayPalAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.createPayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account creation
+})
+
+
Get PayPal Account
+
Hyperwallet.shared.getPayPalAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPayPalAccount? in this case) will contain information about the user’s PayPal account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update PayPal Account
+
letpayPalAccount=HyperwalletPayPalAccount.Builder(token:"trm-12345")
+ .email("test@paypal.com")
+ .build()
+
+Hyperwallet.shared.updatePayPalAccount(account:payPalAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPayPalAccount in this case) will contain information about the user’s PayPal account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account updating
+})
+
+
Deactivate PayPal Account
+
Hyperwallet.shared.deactivatePayPalAccount(transferMethodToken:"trm-12345",notes:"deactivate PayPal account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of PayPal account deactivation
+})
+
+
List PayPal Account
+
letpayPalQueryParam=HyperwalletPayPalAccountQueryParam()
+payPalQueryParam.status=HyperwalletPayPalAccountQueryParam.QueryStatus.activated.rawValue
+payPalQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPayPalAccounts(queryParam:payPalQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPayPalAccount>? in this case) will contain information about or nil if not exist.
+ ifletpayPalAccounts=result?.data{
+ forpayPalAccountinpayPalAccounts{
+ print(payPalAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(transferMethodCountry:"US",transferMethodCurrency:"USD")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.createVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account creation
+})
+
+
Get Venmo Account
+
Hyperwallet.shared.getVenmoAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletVenmoAccount? in this case) will contain information about the user’s Venmo account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Venmo Account
+
letvenmoAccount=HyperwalletVenmoAccount.Builder(token:"trm-12345")
+ .accountId("9876543210")
+ .build()
+
+Hyperwallet.shared.updateVenmoAccount(account:venmoAccount,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletVenmoAccount in this case) will contain information about the user’s Venmo account
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account updating
+})
+
+
Deactivate Venmo Account
+
Hyperwallet.shared.deactivateVenmoAccount(transferMethodToken:"trm-12345",notes:"deactivate Venmo account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of Venmo account deactivation
+})
+
+
List Venmo Account
+
letvenmoQueryParam=HyperwalletVenmoQueryParam()
+venmoQueryParam.status=HyperwalletVenmoQueryParam.QueryStatus.activated.rawValue
+venmoQueryParam.sortBy=HyperwalletVenmoQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listVenmoAccounts(queryParam:venmoQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletVenmoAccount>? in this case) will contain information about or nil if not exist.
+ ifletvenmoAccounts=result?.data{
+ forvenmoAccountinvenmoAccounts{
+ print(venmoAccount.getField(fieldName:.token)??"")
+ }
+ }
+}
+
+
Create Bank Account
+
letbankAccount=HyperwalletBankAccount.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.bankAccountId("12345")
+.branchId("123456")
+.bankAccountPurpose(.checking)
+.build()
+
+Hyperwallet.shared.createBankAccount(account:bankAccount,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletBankAccount in this case) payload will contain information about the account created
+ print(result)
+})
+
+
Get Bank Account
+
Hyperwallet.shared.getBankAccount(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank account or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Account
+
letbankAccount=HyperwalletBankAccount
+.Builder(token:"12345")
+.branchId("026009593")
+.build()
+
+Hyperwallet.shared.updateBankAccount(account:bankAccount,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankAccount in this case) payload will contain information about the account updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account updating
+})
+
+
Deactivate Bank Account
+
Hyperwallet.shared.deactivateBankAccount(transferMethodToken:"trm-12345",notes:"deactivate bank account",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account deactivation
+})
+
+
List Bank Account
+
letbankAccountQueryParam=HyperwalletBankAccountQueryParam()
+bankAccountQueryParam.status=HyperwalletBankAccountQueryParam.QueryStatus.activated.rawValue
+bankAccountQueryParam.sortBy=HyperwalletBankAccountQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankAccounts(queryParam:bankAccountQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankAccount>? in this case) will contain information about or nil if not exist.
+ ifletbankAccounts=result?.data{
+ forbankAccountinbankAccounts{
+ print(bankAccount.token??"")
+ }
+ }
+}
+
+
Create Paper Check
+
letpaperCheck=HyperwalletPaperCheck.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.createPaperCheck(account:paperCheck,completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of account creation
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On successful creation, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check created
+ print(result)
+})
+
+
Get Paper Check
+
Hyperwallet.shared.getPaperCheck(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPaperCheck? in this case) will contain information about the user’s paper check or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Paper Check
+
letpaperCheck=HyperwalletPaperCheck
+.Builder(token:"12345")
+.shippingMethod("STANDARD")
+.build()
+
+Hyperwallet.shared.updatePaperCheck(account:paperCheck,completion:{(response,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletPaperCheck in this case) payload will contain information about the paper check updated
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure while updating
+})
+
+
Deactivate Paper Check
+
Hyperwallet.shared.deactivatePaperCheck(transferMethodToken:"trm-12345",notes:"deactivate paper check",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Paper Check
+
letpaperCheckQueryParam=HyperwalletPaperCheckQueryParam()
+paperCheckQueryParam.status=HyperwalletPaperCheckQueryParam.QueryStatus.activated.rawValue
+paperCheckQueryParam.sortBy=HyperwalletPaperCheckQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPaperChecks(queryParam:paperCheckQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPaperCheck>? in this case) will contain information about or nil if not exist.
+ ifletpaperChecks=result?.data{
+ forpaperCheckinpaperChecks{
+ print(paperCheck.token??"")
+ }
+ }
+}
+
+
Create Bank Card
+
letbankCard=HyperwalletBankCard.Builder(transferMethodCountry:"US",
+ transferMethodCurrency:"USD",
+ transferMethodProfileType:"INDIVIDUAL")
+.cardNumber("1234123412341234")
+.dateOfExpiry("2022-12")
+.cvv("123")
+.build()
+
+Hyperwallet.shared.createBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful creation, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card creation
+})
+
+
Get Bank Card
+
Hyperwallet.shared.getBankCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletBankCard? in this case) will contain information about the user’s bank card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
Update Bank Card
+
letbankCard=HyperwalletBankCard
+.Builder(token:"trm-12345")
+.dateOfExpiry("2022-12")
+.build()
+
+Hyperwallet.shared.updateBankCard(account:bankCard,completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful update, response (HyperwalletBankCard in this case) will contain information about the user’s bank card
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card updating
+})
+
+
Deactivate Bank Card
+
Hyperwallet.shared.deactivateBankCard(transferMethodToken:"trm-12345",notes:"deactivate bank card",completion:{(result,error)in
+ // Code to handle successful response or error
+ // On successful deactivation, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of bank card deactivation
+})
+
+
List Bank Card
+
letbankCardQueryParam=HyperwalletBankCardQueryParam()
+bankCardQueryParam.status=HyperwalletBankCardQueryParam.QueryStatus.activated.rawValue
+bankCardQueryParam.sortBy=HyperwalletBankCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listBankCards(queryParam:bankCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBankCard>? in this case) will contain information about or nil if not exist.
+ ifletbankCards=result?.data{
+ forbankCardinbankCards{
+ print(bankCard.token??"")
+ }
+ }
+}
+
+
Get Prepaid Card
+
Hyperwallet.shared.getPrepaidCard(transferMethodToken:"123123",completion:{(result,error)in
+ // On success, response (HyperwalletPrepaidCard? in this case) will contain information about the user’s prepaid card or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Prepaid Cards
+
letprepaidCardQueryParam=HyperwalletPrepaidCardQueryParam()
+prepaidCardQueryParam.status=HyperwalletPrepaidCardQueryParam.QueryStatus.activated.rawValue
+prepaidCardQueryParam.sortBy=HyperwalletPrepaidCardQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listPrepaidCards(queryParam:prepaidCardQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletPrepaidCard>? in this case) will contain information about or nil if not exist.
+ ifletprepaidCards=result?.data{
+ forprepaidCardinprepaidCards{
+ print(prepaidCard.token)
+ }
+ }
+}
+
+
List Prepaid Card Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2016-12-01T00:00:00")
+
+Hyperwallet.shared.listPrepaidCardReceipts(prepaidCardToken:prepaidCardToken,
+ queryParam:receiptQueryParam,
+ completion:{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List User Receipts
+
letreceiptQueryParam=HyperwalletReceiptQueryParam()
+receiptQueryParam.createdAfter=ISO8601DateFormatter.ignoreTimeZone.date(from:"2018-12-01T00:00:00")
+receiptQueryParam.currency="USD"
+receiptQueryParam.sortBy=HyperwalletReceiptQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserReceipts(queryParam:receiptQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletReceipt>? in this case) will contain information about or nil if not exist.
+ ifletreceipts=result?.data{
+ forreceiptinreceipts{
+ print(receipt.destinationToken??"")
+ }
+ }
+}
+
+
List Transfer Methods
+
lettransferMethodQueryParam=HyperwalletTransferMethodQueryParam()
+transferMethodQueryParam.sortBy=HyperwalletTransferMethodQueryParam.QuerySortable.ascendantCreatedOn.rawValue
+
+Hyperwallet.shared.listTransferMethods(queryParam:transferMethodQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransferMethod>? in this case) will contain information about or nil if not exist.
+ iflettransferMethods=result?.data{
+ fortransferMethodintransferMethods{
+ print(transferMethod.token??"")
+ }
+ }
+}
+
+
Create Transfer
+
lettransfer=HyperwalletTransfer.Builder(clientTransferId:"6712348070812",
+ sourceToken:"source-token",
+ destinationToken:"destination-token")
+ .sourceAmount("100")
+ .sourceCurrency("CAD")
+ .destinationAmount("62.29")
+ .destinationCurrency("USD")
+ .memo("TransferClientId56387")
+ .notes("Partial-Balance Transfer")
+ .build()
+
+Hyperwallet.shared.createTransfer(transfer:transfer,completion:{(result,error)in
+ //Code to handle successful response or error
+ //On successfull creation, response (HyperwalletTransfer in this case) will contain information about the transfer
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Schedule Transfer
+
Hyperwallet.shared.scheduleTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ //Code to handle successful response or error
+ // On successful scheduling, response (HyperwalletStatusTransition in this case) will contain information about the status transition
+ //in case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure of transfer creation
+})
+
+
Get Transfer
+
Hyperwallet.shared.getTransfer(transferToken:"trf-123456",completion:{(result,error)in
+ // On success, response (HyperwalletTransfer? in this case) will contain information about the transfer or nil if not exist.
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+})
+
+
List Transfers
+
Hyperwallet.shared.listTransfers{(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletTransfer>? in this case) will contain information about or nil if not exist.
+ iflettransfers=result?.data{
+ fortransferintransfers{
+ print(transfer.token??"")
+ }
+ }
+})
+
+
List User Balances
+
letbalanceQueryParam=HyperwalletBalanceQueryParam()
+balanceQueryParam.currency="USD"
+balanceQueryParam.sortBy=HyperwalletBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listUserBalances(queryParam:balanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
List Prepaid Card Balances
+
letprepaidCardBalanceQueryParam=HyperwalletPrepaidCardBalanceQueryParam()
+prepaidCardBalanceQueryParam.sortBy=HyperwalletPrepaidCardBalanceQueryParam.QuerySortable.descendantAmount.rawValue
+
+Hyperwallet.shared.listPrepaidCardBalances(prepaidCardToken:"trm-1234",queryParam:prepaidCardBalanceQueryParam){(result,error)in
+ // In case of failure, error (HyperwalletErrorType) will contain HyperwalletErrors containing information about what caused the failure
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ // On success, response (HyperwalletPageList<HyperwalletBalance>? in this case) will contain information about or nil if not exist.
+ ifletbalances=result?.data{
+ forbalanceinbalances{
+ print(balance.amount??"")
+ }
+ }
+}
+
+
Transfer Method Configurations
+
Get countries, currencies
+
letkeysQuery=HyperwalletTransferMethodConfigurationKeysQuery()
+
+Hyperwallet.shared.retrieveTransferMethodConfigurationKeys(request:keysQuery){(result,error)in
+
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+ // Get countries
+ letcountries=result.countries()
+
+ // Get currencies based on the first available country code
+ varcurrencies:[HyperwalletCurrency]?
+ ifletcountries=result.countries(),!countries.isEmpty{
+ currencies=result.currencies(from:countries.first!.code)
+ }
+
+ print(countries)
+ print(currencies)
+}
+
+
Get transfer method types, fees and processing times for Country and Currency
+
letcountry="CA"
+letcurrency="CAD"
+letkeysQuery=HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery(country:country,currency:currency)
+
+Hyperwallet
+ .shared
+ .retrieveTransferMethodTypesFeesAndProcessingTimes(request:keysQuery){(result,error)in
+ guarderror==nilelse{
+ print(error?.getHyperwalletErrors()?.errorList?)
+ return
+ }
+
+ guardletresult=resultelse{return}
+
+ // Get transfer method types based on the first country code and its first currency code
+ transferMethodTypes=result.transferMethodTypes(countryCode:country,currencyCode:currency)
+ print(transferMethodTypes)
+ print(transferMethodTypes?.first?.fees)
+ print(transferMethodTypes?.first?.processingTimes)
+}
+
+
+
+
diff --git a/search.json b/search.json
new file mode 100644
index 00000000..532a155d
--- /dev/null
+++ b/search.json
@@ -0,0 +1 @@
+{"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC06clientC2Id11sourceToken011destinationH0AESS_S2Stcfc":{"name":"init(clientTransferId:sourceToken:destinationToken:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletTransfer.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC17destinationAmountyAESSSgF":{"name":"destinationAmount(_:)","abstract":"\u003cp\u003eSets the transfer destination amount.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC19destinationCurrencyyAESSSgF":{"name":"destinationCurrency(_:)","abstract":"\u003cp\u003eSets the transfer destination currency.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC4memoyAESSSgF":{"name":"memo(_:)","abstract":"\u003cp\u003eSets the transfer memo.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC5notesyAESSSgF":{"name":"notes(_:)","abstract":"\u003cp\u003eSets the transfer notes.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC12sourceAmountyAESSSgF":{"name":"sourceAmount(_:)","abstract":"\u003cp\u003eSets the transfer source amount.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC14sourceCurrencyyAESSSgF":{"name":"sourceCurrency(_:)","abstract":"\u003cp\u003eSets the transfer source currency.\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletTransfer/Builder.html#/s:14HyperwalletSDK0A8TransferV7BuilderC5buildACyF":{"name":"build()","parent_name":"Builder"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9cancelledyA2EmF":{"name":"cancelled","abstract":"\u003cp\u003eThe transfer status is cancelled\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9completedyA2EmF":{"name":"completed","abstract":"\u003cp\u003eThe transfer status is completed\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO7expiredyA2EmF":{"name":"expired","abstract":"\u003cp\u003eThe transfer status is expired\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe transfer status is failed\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO10inProgressyA2EmF":{"name":"inProgress","abstract":"\u003cp\u003eThe transfer status is in Progress\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO6quotedyA2EmF":{"name":"quoted","abstract":"\u003cp\u003eThe transfer status is quoted\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO8returnedyA2EmF":{"name":"returned","abstract":"\u003cp\u003eThe transfer status is returned\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO9scheduledyA2EmF":{"name":"scheduled","abstract":"\u003cp\u003eThe transfer status is scheduled\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html#/s:14HyperwalletSDK0A8TransferV0aC6StatusO20verificationRequiredyA2EmF":{"name":"verificationRequired","abstract":"\u003cp\u003eThe verification required\u003c/p\u003e","parent_name":"HyperwalletTransferStatus"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV06clientC2IdSSvp":{"name":"clientTransferId","abstract":"\u003cp\u003eA value that identifies the client transfer id.\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe created date\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV17destinationAmountSSSgvp":{"name":"destinationAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV19destinationCurrencySSSgvp":{"name":"destinationCurrency","abstract":"\u003cp\u003eThe destination currency\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV20destinationFeeAmountSSSgvp":{"name":"destinationFeeAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV16destinationTokenSSvp":{"name":"destinationToken","abstract":"\u003cp\u003eThe destination token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV9expiresOnSSSgvp":{"name":"expiresOn","abstract":"\u003cp\u003eThe expiresOn\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV16foreignExchangesSayAA0A15ForeignExchangeVGSgvp":{"name":"foreignExchanges","abstract":"\u003cp\u003eThe list of foreignExchanges\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV4memoSSSgvp":{"name":"memo","abstract":"\u003cp\u003eThe memo\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eThe notes to add\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV12sourceAmountSSSgvp":{"name":"sourceAmount","abstract":"\u003cp\u003eThe source amount\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV14sourceCurrencySSSgvp":{"name":"sourceCurrency","abstract":"\u003cp\u003eThe source currency\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV15sourceFeeAmountSSSgvp":{"name":"sourceFeeAmount","abstract":"\u003cp\u003eThe source fee\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV11sourceTokenSSvp":{"name":"sourceToken","abstract":"\u003cp\u003eThe source token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV6statusAC0aC6StatusOSgvp":{"name":"status","abstract":"\u003cp\u003eThe transfer status\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer.html#/s:14HyperwalletSDK0A8TransferV5tokenSSSgvp":{"name":"token","abstract":"\u003cp\u003eThe token\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer/HyperwalletTransferStatus.html":{"name":"HyperwalletTransferStatus","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletTransferStatus\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletTransfer/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletTransfer"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV17destinationAmountSSSgvp":{"name":"destinationAmount","abstract":"\u003cp\u003eThe destination amount\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV19destinationCurrencySSSgvp":{"name":"destinationCurrency","abstract":"\u003cp\u003eThe destination currency\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV4rateSSSgvp":{"name":"rate","abstract":"\u003cp\u003eThe rate\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV12sourceAmountSSSgvp":{"name":"sourceAmount","abstract":"\u003cp\u003eThe source amount\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletForeignExchange.html#/s:14HyperwalletSDK0A15ForeignExchangeV14sourceCurrencySSSgvp":{"name":"sourceCurrency","abstract":"\u003cp\u003eThe source currency\u003c/p\u003e","parent_name":"HyperwalletForeignExchange"},"Structs/HyperwalletStatusTransition/Builder.html#/s:14HyperwalletSDK0A16StatusTransitionV7BuilderC5notes10transitionAESSSg_AC0C0Otcfc":{"name":"init(notes:transition:)","abstract":"\u003cp\u003eInitialization of Builder\u003c/p\u003e","parent_name":"Builder"},"Structs/HyperwalletStatusTransition/Builder.html#/s:14HyperwalletSDK0A16StatusTransitionV7BuilderC5buildACyF":{"name":"build()","parent_name":"Builder"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eThe status is activate.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9cancelledyA2EmF":{"name":"cancelled","abstract":"\u003cp\u003eThe status is cancel.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9completedyA2EmF":{"name":"completed","abstract":"\u003cp\u003eThe status is complete.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O11deactivatedyA2EmF":{"name":"deactivated","abstract":"\u003cp\u003eThe status is deactivate.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O7expiredyA2EmF":{"name":"expired","abstract":"\u003cp\u003eThe status is expire.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe status is fail.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O10inProgressyA2EmF":{"name":"inProgress","abstract":"\u003cp\u003eThe status is in progress.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O7invalidyA2EmF":{"name":"invalid","abstract":"\u003cp\u003eThe status is invalid.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O12lostOrStolenyA2EmF":{"name":"lostOrStolen","abstract":"\u003cp\u003eThe status is lost or stolen.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O24pendingAccountActivationyA2EmF":{"name":"pendingAccountActivation","abstract":"\u003cp\u003eThe status is pending account activation.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O21pendingIdVerificationyA2EmF":{"name":"pendingIdVerification","abstract":"\u003cp\u003eThe status is pending identity verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O22pendingTaxVerificationyA2EmF":{"name":"pendingTaxVerification","abstract":"\u003cp\u003eThe status is pending tax verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O30pendingTransactionVerificationyA2EmF":{"name":"pendingTransactionVerification","abstract":"\u003cp\u003eThe status is pending transaction verification.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O27pendingTransferMethodActionyA2EmF":{"name":"pendingTransferMethodAction","abstract":"\u003cp\u003eThe status is pending transfer method action.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O6quotedyA2EmF":{"name":"quoted","abstract":"\u003cp\u003eThe status is quoted\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8recalledyA2EmF":{"name":"recalled","abstract":"\u003cp\u003eThe status is recall.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8returnedyA2EmF":{"name":"returned","abstract":"\u003cp\u003eThe status is return.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9scheduledyA2EmF":{"name":"scheduled","abstract":"\u003cp\u003eThe status is schedule.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O9suspendedyA2EmF":{"name":"suspended","abstract":"\u003cp\u003eThe status is suspend.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O11unsuspendedyA2EmF":{"name":"unsuspended","abstract":"\u003cp\u003eThe status is not suspended.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O20verificationRequiredyA2EmF":{"name":"verificationRequired","abstract":"\u003cp\u003eThe status is verification required\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition/Status.html#/s:14HyperwalletSDK0A16StatusTransitionV0C0O8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eThe status is verified.\u003c/p\u003e","parent_name":"Status"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the status changed in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone used is UTC,","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV04fromC0AC0C0OSgvp":{"name":"fromStatus","abstract":"\u003cp\u003eThe status before the transition.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eComments regarding the status change.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV5tokenSSSgvp":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated status transition identifier.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV02toC0AC0C0OSgvp":{"name":"toStatus","abstract":"\u003cp\u003eThe status after the transition.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition.html#/s:14HyperwalletSDK0A16StatusTransitionV10transitionAC0C0OSgvp":{"name":"transition","abstract":"\u003cp\u003eThe new status of the resource.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition/Status.html":{"name":"Status","abstract":"\u003cp\u003eRepresentation of the status.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletStatusTransition/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletStatusTransition.html\"\u003eHyperwalletStatusTransition\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletStatusTransition"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html#/s:14HyperwalletSDK0A7ReceiptV0A9EntryTypeO6credityA2EmF":{"name":"credit","abstract":"\u003cp\u003eThe credit entry type\u003c/p\u003e","parent_name":"HyperwalletEntryType"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html#/s:14HyperwalletSDK0A7ReceiptV0A9EntryTypeO5debityA2EmF":{"name":"debit","abstract":"\u003cp\u003eThe debit entry type\u003c/p\u003e","parent_name":"HyperwalletEntryType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO9annualFeeyA2EmF":{"name":"annualFee","abstract":"\u003cp\u003eThe annual fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15annualFeeRefundyA2EmF":{"name":"annualFeeRefund","abstract":"\u003cp\u003eThe annual fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18customerServiceFeeyA2EmF":{"name":"customerServiceFee","abstract":"\u003cp\u003eThe customer service fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24customerServiceFeeRefundyA2EmF":{"name":"customerServiceFeeRefund","abstract":"\u003cp\u003eThe customer service fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20expeditedShippingFeeyA2EmF":{"name":"expeditedShippingFee","abstract":"\u003cp\u003eThe expedited shipping fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16genericFeeRefundyA2EmF":{"name":"genericFeeRefund","abstract":"\u003cp\u003eThe generic fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10monthlyFeeyA2EmF":{"name":"monthlyFee","abstract":"\u003cp\u003eThe monthly fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16monthlyFeeRefundyA2EmF":{"name":"monthlyFeeRefund","abstract":"\u003cp\u003eThe monthly fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16paymentExpiryFeeyA2EmF":{"name":"paymentExpiryFee","abstract":"\u003cp\u003eThe payment expiry fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10paymentFeeyA2EmF":{"name":"paymentFee","abstract":"\u003cp\u003eThe payment fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13processingFeeyA2EmF":{"name":"processingFee","abstract":"\u003cp\u003eThe processing fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19standardShippingFeeyA2EmF":{"name":"standardShippingFee","abstract":"\u003cp\u003eThe standard shipping fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO11transferFeeyA2EmF":{"name":"transferFee","abstract":"\u003cp\u003eThe transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO10adjustmentyA2EmF":{"name":"adjustment","abstract":"\u003cp\u003eThe adjustment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7deposityA2EmF":{"name":"deposit","abstract":"\u003cp\u003eThe deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15foreignExchangeyA2EmF":{"name":"foreignExchange","abstract":"\u003cp\u003eThe foreign exchange\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16manualAdjustmentyA2EmF":{"name":"manualAdjustment","abstract":"\u003cp\u003eThe manual adjustment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17paymentExpirationyA2EmF":{"name":"paymentExpiration","abstract":"\u003cp\u003eThe payment expiration\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22bankAccountTransferFeeyA2EmF":{"name":"bankAccountTransferFee","abstract":"\u003cp\u003eThe bank account transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25bankAccountTransferReturnyA2EmF":{"name":"bankAccountTransferReturn","abstract":"\u003cp\u003eThe bank account transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28bankAccountTransferReturnFeeyA2EmF":{"name":"bankAccountTransferReturnFee","abstract":"\u003cp\u003eThe bank account transfer return fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21transferToBankAccountyA2EmF":{"name":"transferToBankAccount","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17cardActivationFeeyA2EmF":{"name":"cardActivationFee","abstract":"\u003cp\u003eThe card activation fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23cardActivationFeeWaiveryA2EmF":{"name":"cardActivationFeeWaiver","abstract":"\u003cp\u003eThe card activation fee waiver\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7cardFeeyA2EmF":{"name":"cardFee","abstract":"\u003cp\u003eThe card fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27manualTransferToPrepaidCardyA2EmF":{"name":"manualTransferToPrepaidCard","abstract":"\u003cp\u003eThe manual transfer to prepaid card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardBalanceInquiryFeeyA2EmF":{"name":"prepaidCardBalanceInquiryFee","abstract":"\u003cp\u003eThe prepaid card balance inquiry fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22prepaidCardCashAdvanceyA2EmF":{"name":"prepaidCardCashAdvance","abstract":"\u003cp\u003eThe prepaid card cash advance\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO31prepaidCardDisputedChargeRefundyA2EmF":{"name":"prepaidCardDisputedChargeRefund","abstract":"\u003cp\u003eThe prepaid card disputed charge refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardDisputeDeposityA2EmF":{"name":"prepaidCardDisputeDeposit","abstract":"\u003cp\u003eThe prepaid card dispute deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO36prepaidCardDomesticCashWithdrawalFeeyA2EmF":{"name":"prepaidCardDomesticCashWithdrawalFee","abstract":"\u003cp\u003eThe prepaid card domestic cash withdrawal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO33prepaidCardExchangeRateDifferenceyA2EmF":{"name":"prepaidCardExchangeRateDifference","abstract":"\u003cp\u003eThe prepaid card exchange rate difference\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardManualUnloadyA2EmF":{"name":"prepaidCardManualUnload","abstract":"\u003cp\u003eThe prepaid card manual unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO36prepaidCardOverseasCashWithdrawalFeeyA2EmF":{"name":"prepaidCardOverseasCashWithdrawalFee","abstract":"\u003cp\u003eThe prepaid card overseas cash withdrawal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardPinChangeFeeyA2EmF":{"name":"prepaidCardPinChangeFee","abstract":"\u003cp\u003eThe prepaid card pin change fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardRefundyA2EmF":{"name":"prepaidCardRefund","abstract":"\u003cp\u003eThe prepaid card refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardReplacementFeeyA2EmF":{"name":"prepaidCardReplacementFee","abstract":"\u003cp\u003eThe prepaid card replacement fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardSaleReversalyA2EmF":{"name":"prepaidCardSaleReversal","abstract":"\u003cp\u003eThe prepaid card sale reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardUnloadyA2EmF":{"name":"prepaidCardUnload","abstract":"\u003cp\u003eThe prepaid card unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19transferToDebitCardyA2EmF":{"name":"transferToDebitCard","abstract":"\u003cp\u003eThe transfer to debit card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21transferToPrepaidCardyA2EmF":{"name":"transferToPrepaidCard","abstract":"\u003cp\u003eThe transfer to prepaid card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardAccountDeposityA2EmF":{"name":"prepaidCardAccountDeposit","abstract":"\u003cp\u003eThe prepaid card account deposit\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21prepaidCardAccountFeeyA2EmF":{"name":"prepaidCardAccountFee","abstract":"\u003cp\u003eThe prepaid card account fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardAnnualFeeDiscountyA2EmF":{"name":"prepaidCardAnnualFeeDiscount","abstract":"\u003cp\u003eThe prepaid card annual fee discount\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardBillReprintFeeyA2EmF":{"name":"prepaidCardBillReprintFee","abstract":"\u003cp\u003eThe prepaid card bill reprint fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardAtmOrCashAdvanceFeeyA2EmF":{"name":"prepaidCardAtmOrCashAdvanceFee","abstract":"\u003cp\u003eThe prepaid card atm or cash advance fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardCashAdvanceChargebackyA2EmF":{"name":"prepaidCardCashAdvanceChargeback","abstract":"\u003cp\u003eThe prepaid card cash advance chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO40prepaidCardCashAdvanceChargebackReversalyA2EmF":{"name":"prepaidCardCashAdvanceChargebackReversal","abstract":"\u003cp\u003eThe prepaid card cash advance chargeback reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardCashAdvanceRepressyA2EmF":{"name":"prepaidCardCashAdvanceRepress","abstract":"\u003cp\u003eThe prepaid card cash advance repress\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO37prepaidCardCashAdvanceRepressReversalyA2EmF":{"name":"prepaidCardCashAdvanceRepressReversal","abstract":"\u003cp\u003eThe prepaid card cash advance repress reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21prepaidCardChargebackyA2EmF":{"name":"prepaidCardChargeback","abstract":"\u003cp\u003eThe prepaid card chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27prepaidCardChargebackRefundyA2EmF":{"name":"prepaidCardChargebackRefund","abstract":"\u003cp\u003eThe prepaid card chargeback refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardChargebackRefundReversalyA2EmF":{"name":"prepaidCardChargebackRefundReversal","abstract":"\u003cp\u003eThe prepaid card chargeback refund reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardChargebackReversalyA2EmF":{"name":"prepaidCardChargebackReversal","abstract":"\u003cp\u003eThe prepaid card chargeback reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26prepaidCardCommissionOrFeeyA2EmF":{"name":"prepaidCardCommissionOrFee","abstract":"\u003cp\u003eThe prepaid card commission or fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardDebitTransferyA2EmF":{"name":"prepaidCardDebitTransfer","abstract":"\u003cp\u003eThe prepaid card debit transfer\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO29prepaidCardDocumentRequestFeeyA2EmF":{"name":"prepaidCardDocumentRequestFee","abstract":"\u003cp\u003eThe prepaid card document request fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardEmergencyCashyA2EmF":{"name":"prepaidCardEmergencyCash","abstract":"\u003cp\u003eThe prepaid card emergency cash\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO020prepaidCardEmergencyF0yA2EmF":{"name":"prepaidCardEmergencyCard","abstract":"\u003cp\u003eThe prepaid card emergency card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardIncomeyA2EmF":{"name":"prepaidCardIncome","abstract":"\u003cp\u003eThe prepaid card income\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18prepaidCardLoadFeeyA2EmF":{"name":"prepaidCardLoadFee","abstract":"\u003cp\u003eThe prepaid card load fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO33prepaidCardOverduePaymentInterestyA2EmF":{"name":"prepaidCardOverduePaymentInterest","abstract":"\u003cp\u003eThe prepaid card overdue payment interest\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18prepaidCardPaymentyA2EmF":{"name":"prepaidCardPayment","abstract":"\u003cp\u003eThe prepaid card payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardPinReprintFeeyA2EmF":{"name":"prepaidCardPinReprintFee","abstract":"\u003cp\u003eThe prepaid card pin reprint fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26prepaidCardPriorityPassFeeyA2EmF":{"name":"prepaidCardPriorityPassFee","abstract":"\u003cp\u003eThe prepaid card priority pass fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardPriorityPassRenewalyA2EmF":{"name":"prepaidCardPriorityPassRenewal","abstract":"\u003cp\u003eThe prepaid card priority pass renewal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28prepaidCardRecurringInterestyA2EmF":{"name":"prepaidCardRecurringInterest","abstract":"\u003cp\u003eThe prepaid card recurring interest\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24prepaidCardRefundRepressyA2EmF":{"name":"prepaidCardRefundRepress","abstract":"\u003cp\u003eThe prepaid card refund repress\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardRefundRepressReversalyA2EmF":{"name":"prepaidCardRefundRepressReversal","abstract":"\u003cp\u003eThe prepaid card refund repress reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23prepaidCardStatementFeeyA2EmF":{"name":"prepaidCardStatementFee","abstract":"\u003cp\u003eThe prepaid card statement fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO30prepaidCardTelephoneSupportFeeyA2EmF":{"name":"prepaidCardTelephoneSupportFee","abstract":"\u003cp\u003eThe prepaid card telephone support fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22prepaidCardTransferFeeyA2EmF":{"name":"prepaidCardTransferFee","abstract":"\u003cp\u003eThe prepaid card transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardTransferReturnyA2EmF":{"name":"prepaidCardTransferReturn","abstract":"\u003cp\u003eThe prepaid card transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardBankWithdrawalChargebackyA2EmF":{"name":"prepaidCardBankWithdrawalChargeback","abstract":"\u003cp\u003eThe prepaid card bank withdrawal chargeback\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20prepaidCardRefundfeeyA2EmF":{"name":"prepaidCardRefundfee","abstract":"\u003cp\u003eThe prepaid card refund fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO32prepaidCardMonthlyMaintenanceFeeyA2EmF":{"name":"prepaidCardMonthlyMaintenanceFee","abstract":"\u003cp\u003eThe prepaid card monthly maintenance fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO25prepaidCardTransactionFeeyA2EmF":{"name":"prepaidCardTransactionFee","abstract":"\u003cp\u003eThe prepaid card transaction fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17prepaidCardSmsFeeyA2EmF":{"name":"prepaidCardSmsFee","abstract":"\u003cp\u003eThe prepaid card sms fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO35prepaidCardDeclinedAuthorizationFeeyA2EmF":{"name":"prepaidCardDeclinedAuthorizationFee","abstract":"\u003cp\u003eThe prepaid card declined authorization fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO5fispcyA2EmF":{"name":"fispc","abstract":"\u003cp\u003eThe prepaid card purchases\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO8donationyA2EmF":{"name":"donation","abstract":"\u003cp\u003eThe donation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO11donationFeeyA2EmF":{"name":"donationFee","abstract":"\u003cp\u003eThe donation fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14donationReturnyA2EmF":{"name":"donationReturn","abstract":"\u003cp\u003eThe donation return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15merchantPaymentyA2EmF":{"name":"merchantPayment","abstract":"\u003cp\u003eThe merchant payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18merchantPaymentFeeyA2EmF":{"name":"merchantPaymentFee","abstract":"\u003cp\u003eThe merchant payment fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21merchantPaymentRefundyA2EmF":{"name":"merchantPaymentRefund","abstract":"\u003cp\u003eThe merchant payment refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO21merchantPaymentReturnyA2EmF":{"name":"merchantPaymentReturn","abstract":"\u003cp\u003eThe merchant payment return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23moneygramTransferReturnyA2EmF":{"name":"moneygramTransferReturn","abstract":"\u003cp\u003eThe money gram transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19transferToMoneygramyA2EmF":{"name":"transferToMoneygram","abstract":"\u003cp\u003eThe transfer to money gram\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13paperCheckFeeyA2EmF":{"name":"paperCheckFee","abstract":"\u003cp\u003eThe paper check fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO16paperCheckRefundyA2EmF":{"name":"paperCheckRefund","abstract":"\u003cp\u003eThe paper check refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20transferToPaperCheckyA2EmF":{"name":"transferToPaperCheck","abstract":"\u003cp\u003eThe transfer to paper check\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14accountClosureyA2EmF":{"name":"accountClosure","abstract":"\u003cp\u003eThe account to be closed\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO17accountClosureFeeyA2EmF":{"name":"accountClosureFee","abstract":"\u003cp\u003eThe account closure fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13accountUnloadyA2EmF":{"name":"accountUnload","abstract":"\u003cp\u003eThe account unload\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14dormantUserFeeyA2EmF":{"name":"dormantUserFee","abstract":"\u003cp\u003eThe dormant user fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO20dormantUserFeeRefundyA2EmF":{"name":"dormantUserFeeRefund","abstract":"\u003cp\u003eThe dormant user fee refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7paymentyA2EmF":{"name":"payment","abstract":"\u003cp\u003eThe payment\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO19paymentCancellationyA2EmF":{"name":"paymentCancellation","abstract":"\u003cp\u003eThe payment cancellation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15paymentReversalyA2EmF":{"name":"paymentReversal","abstract":"\u003cp\u003eThe payment reversal\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18paymentReversalFeeyA2EmF":{"name":"paymentReversalFee","abstract":"\u003cp\u003eThe payment reversal fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO13paymentReturnyA2EmF":{"name":"paymentReturn","abstract":"\u003cp\u003eThe payment return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24transferToProgramAccountyA2EmF":{"name":"transferToProgramAccount","abstract":"\u003cp\u003eThe transfer to program account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14transferToUseryA2EmF":{"name":"transferToUser","abstract":"\u003cp\u003eThe transfer to user\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO28virtualIncentiveCancellationyA2EmF":{"name":"virtualIncentiveCancellation","abstract":"\u003cp\u003eThe virtual incentive cancellation\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24virtualIncentiveIssuanceyA2EmF":{"name":"virtualIncentiveIssuance","abstract":"\u003cp\u003eThe virtual incentive issuance\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO24virtualIncentivePurchaseyA2EmF":{"name":"virtualIncentivePurchase","abstract":"\u003cp\u003eThe virtual incentive purchase\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22virtualIncentiveRefundyA2EmF":{"name":"virtualIncentiveRefund","abstract":"\u003cp\u003eThe virtual incentive refund\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22transferToWesternUnionyA2EmF":{"name":"transferToWesternUnion","abstract":"\u003cp\u003eThe transfer to western union\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18transferToWubsWireyA2EmF":{"name":"transferToWubsWire","abstract":"\u003cp\u003eThe transfer to wubs wire\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26westernUnionTransferReturnyA2EmF":{"name":"westernUnionTransferReturn","abstract":"\u003cp\u003eThe western union transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22wubsWireTransferReturnyA2EmF":{"name":"wubsWireTransferReturn","abstract":"\u003cp\u003eThe wubs wire transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO14transferToWireyA2EmF":{"name":"transferToWire","abstract":"\u003cp\u003eThe transfer to Wire\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15wireTransferFeeyA2EmF":{"name":"wireTransferFee","abstract":"\u003cp\u003eThe wire transfer fee\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18wireTransferReturnyA2EmF":{"name":"wireTransferReturn","abstract":"\u003cp\u003eThe wire transfer return\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO15prepaidCardSaleyA2EmF":{"name":"prepaidCardSale","abstract":"\u003cp\u003eThe prepaid card sale\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO23transferToPayPalAccountyA2EmF":{"name":"transferToPayPalAccount","abstract":"\u003cp\u003eTransfer to PayPal account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO27paypalAccountTransferReturnyA2EmF":{"name":"paypalAccountTransferReturn","abstract":"\u003cp\u003eReturn to Paypal Account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO22transferToVenmoAccountyA2EmF":{"name":"transferToVenmoAccount","abstract":"\u003cp\u003eTransfer to Venmo account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO26venmoAccountTransferReturnyA2EmF":{"name":"venmoAccountTransferReturn","abstract":"\u003cp\u003eReturn to Venmo account\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO18transferToBankCardyA2EmF":{"name":"transferToBankCard","abstract":"\u003cp\u003eTransfer To Bank Card\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO7unknownyA2EmF":{"name":"unknown","abstract":"\u003cp\u003eDefault - unknown transfer type\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html#/s:14HyperwalletSDK0A7ReceiptV0aC4TypeO4fromAEs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eA safe initializer for creating a HyperwalletReceiptType object\u003c/p\u003e","parent_name":"HyperwalletReceiptType"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV6amountSSSgvp":{"name":"amount","abstract":"\u003cp\u003eThe gross amount of the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV9createdOnSSSgvp":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the transaction was created on in ISO 8601 format \u0026lsquo;YYYY-MM-DDThh:mm:ss\u0026rsquo; (UTC timezone)\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe 3-letter currency code for the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV16destinationTokenSSSgvp":{"name":"destinationToken","abstract":"\u003cp\u003eA token identifying where the funds were sent.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV7detailsAA0aC7DetailsVSgvp":{"name":"details","abstract":"\u003cp\u003eDetails of the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV5entryAC0A9EntryTypeOSgvp":{"name":"entry","abstract":"\u003cp\u003eThe type of transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV3feeSSSgvp":{"name":"fee","abstract":"\u003cp\u003eThe fee amount.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV23foreignExchangeCurrencySSSgvp":{"name":"foreignExchangeCurrency","abstract":"\u003cp\u003eThe 3-letter currency code for the foreign exchange.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV19foreignExchangeRateSSSgvp":{"name":"foreignExchangeRate","abstract":"\u003cp\u003eThe foreign exchange rate.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV9journalIdSSSgvp":{"name":"journalId","abstract":"\u003cp\u003eThe journal entry number for the transaction.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV11sourceTokenSSSgvp":{"name":"sourceToken","abstract":"\u003cp\u003eA token identifying the source of funds.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:14HyperwalletSDK0A7ReceiptV4typeAC0aC4TypeOSgvp":{"name":"type","abstract":"\u003cp\u003eThe transaction type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt/HyperwalletReceiptType.html":{"name":"HyperwalletReceiptType","abstract":"\u003cp\u003eThe transaction type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceipt/HyperwalletEntryType.html":{"name":"HyperwalletEntryType","abstract":"\u003cp\u003eThe entry type.\u003c/p\u003e","parent_name":"HyperwalletReceipt"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV13bankAccountIdSSSgvp":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18bankAccountPurposeSSSgvp":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe bank account type, e.g. CHECKING or SAVINGS\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV6bankIdSSSgvp":{"name":"bankId","abstract":"\u003cp\u003eThe bank code, BIC/SWIFT or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV8bankNameSSSgvp":{"name":"bankName","abstract":"\u003cp\u003eThe bank name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18branchAddressLine1SSSgvp":{"name":"branchAddressLine1","abstract":"\u003cp\u003eThe branch address, first line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18branchAddressLine2SSSgvp":{"name":"branchAddressLine2","abstract":"\u003cp\u003eThe branch address, second line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10branchCitySSSgvp":{"name":"branchCity","abstract":"\u003cp\u003eThe branch city\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV13branchCountrySSSgvp":{"name":"branchCountry","abstract":"\u003cp\u003eThe 2-letter country code of the branch\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV8branchIdSSSgvp":{"name":"branchId","abstract":"\u003cp\u003eThe branch code or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10branchNameSSSgvp":{"name":"branchName","abstract":"\u003cp\u003eThe branch name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV16branchPostalCodeSSSgvp":{"name":"branchPostalCode","abstract":"\u003cp\u003eThe branch postal code\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV19branchStateProvinceSSSgvp":{"name":"branchStateProvince","abstract":"\u003cp\u003eThe branch state or province\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14cardExpiryDateSSSgvp":{"name":"cardExpiryDate","abstract":"\u003cp\u003eThe card expiry date in YYYY-MM format\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14cardHolderNameSSSgvp":{"name":"cardHolderName","abstract":"\u003cp\u003eThe card holder\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10cardNumberSSSgvp":{"name":"cardNumber","abstract":"\u003cp\u003eThe card number\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV11charityNameSSSgvp":{"name":"charityName","abstract":"\u003cp\u003eThe name of the charity that is receiving the donation\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV11checkNumberSSSgvp":{"name":"checkNumber","abstract":"\u003cp\u003eThe paper check number\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV15clientPaymentIdSSSgvp":{"name":"clientPaymentId","abstract":"\u003cp\u003eThe client-assigned transaction identifier\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV4memoSSSgvp":{"name":"memo","abstract":"\u003cp\u003eAn internal note added by a client operator\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV5notesSSSgvp":{"name":"notes","abstract":"\u003cp\u003eA description for the receipt\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17payeeAddressLine1SSSgvp":{"name":"payeeAddressLine1","abstract":"\u003cp\u003eThe payee\u0026rsquo;s address first line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17payeeAddressLine2SSSgvp":{"name":"payeeAddressLine2","abstract":"\u003cp\u003eThe payee\u0026rsquo;s address, second line\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payeeCitySSSgvp":{"name":"payeeCity","abstract":"\u003cp\u003eThe payee\u0026rsquo;s city\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV12payeeCountrySSSgvp":{"name":"payeeCountry","abstract":"\u003cp\u003eThe payee\u0026rsquo;s 2-letter country code\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV10payeeEmailSSSgvp":{"name":"payeeEmail","abstract":"\u003cp\u003eThe payee\u0026rsquo;s email address on record\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payeeNameSSSgvp":{"name":"payeeName","abstract":"\u003cp\u003eThe payee\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV15payeePostalCodeSSSgvp":{"name":"payeePostalCode","abstract":"\u003cp\u003eThe payee\u0026rsquo;s postal code, ZIP code or equivalent\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV18payeeStateProvinceSSSgvp":{"name":"payeeStateProvince","abstract":"\u003cp\u003eThe payee\u0026rsquo;s state or province\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV9payerNameSSSgvp":{"name":"payerName","abstract":"\u003cp\u003eThe payer\u0026rsquo;s full name\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV17paymentExpiryDateSSSgvp":{"name":"paymentExpiryDate","abstract":"\u003cp\u003eThe payment expiry date in YYYY-MM-DD format\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV20returnOrRecallReasonSSSgvp":{"name":"returnOrRecallReason","abstract":"\u003cp\u003eThe reason for returning or recalling the payment\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV14securityAnswerSSSgvp":{"name":"securityAnswer","abstract":"\u003cp\u003eThe answer to the securityQuestion\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV16securityQuestionSSSgvp":{"name":"securityQuestion","abstract":"\u003cp\u003eA security question\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletReceiptDetails.html#/s:14HyperwalletSDK0A14ReceiptDetailsV7websiteSSSgvp":{"name":"website","abstract":"\u003cp\u003eThe URL of the client website where the virtual incentive was accrued\u003c/p\u003e","parent_name":"HyperwalletReceiptDetails"},"Structs/HyperwalletPageParameter.html#/s:14HyperwalletSDK0A13PageParameterV3relSSSgvp":{"name":"rel","abstract":"\u003cp\u003eThe relationship\u003c/p\u003e","parent_name":"HyperwalletPageParameter"},"Structs/HyperwalletPageLink.html#/s:14HyperwalletSDK0A8PageLinkV4href10Foundation3URLVSgvp":{"name":"href","abstract":"\u003cp\u003eThe URL of the link\u003c/p\u003e","parent_name":"HyperwalletPageLink"},"Structs/HyperwalletPageLink.html#/s:14HyperwalletSDK0A8PageLinkV6paramsAA0aC9ParameterVSgvp":{"name":"params","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletPageParameter.html\"\u003eHyperwalletPageParameter\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletPageLink"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5countSiSgvp":{"name":"count","abstract":"\u003cp\u003eThe amount of the dataset\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV4dataSayxGSgvp":{"name":"data","abstract":"\u003cp\u003eThe \u003ccode\u003eListType\u003c/code\u003e items\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5limitSiSgvp":{"name":"limit","abstract":"\u003cp\u003eThe maximum number of records that will be returned per page\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV5linksSayAA0aC4LinkVGSgvp":{"name":"links","abstract":"\u003cp\u003eThe links\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletPageList.html#/s:14HyperwalletSDK0A8PageListV6offsetSiSgvp":{"name":"offset","abstract":"\u003cp\u003eThe number of records to skip.\u003c/p\u003e","parent_name":"HyperwalletPageList"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:14HyperwalletSDK0A43TransferMethodUpdateConfigurationFieldQueryV08transferD5TokenACSS_tcfc":{"name":"init(transferMethodToken:)","abstract":"\u003cp\u003eCreate a new \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationFieldQuery\u003c/code\u003e from the transferMethodToken\u003c/p\u003e","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html#/s:14HyperwalletSDK0A36TransferMethodConfigurationKeysQueryV5limitACSi_tcfc":{"name":"init(limit:)","abstract":"\u003cp\u003e/ Create a new \u003ccode\u003eHyperwalletTransferMethodConfigurationKeysQuery\u003c/code\u003e instance\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKeysQuery"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodConfigurationKeysQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:14HyperwalletSDK0A37TransferMethodConfigurationFieldQueryV7country8currency08transferD4Type7profileACSS_S3Stcfc":{"name":"init(country:currency:transferMethodType:profile:)","abstract":"\u003cp\u003eCreate a new \u003ccode\u003eHyperwalletTransferMethodConfigurationQuery\u003c/code\u003e from the country, currency, transferMethodType","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:14HyperwalletSDK12GraphQlQueryP02tocD09userTokenS2S_tF":{"name":"toGraphQl(userToken:)","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"HyperwalletTransferMethodConfigurationFieldQuery"},"Structs/HyperwalletConditionalPattern.html#/s:14HyperwalletSDK0A18ConditionalPatternV7patternSSvp":{"name":"pattern","abstract":"\u003cp\u003eThe pattern\u003c/p\u003e","parent_name":"HyperwalletConditionalPattern"},"Structs/HyperwalletConditionalPattern.html#/s:14HyperwalletSDK0A18ConditionalPatternV5regexSSvp":{"name":"regex","abstract":"\u003cp\u003eThe regex\u003c/p\u003e","parent_name":"HyperwalletConditionalPattern"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV19conditionalPatternsSayAA0A18ConditionalPatternVGSgvp":{"name":"conditionalPatterns","abstract":"\u003cp\u003eThe conditional pattern, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV14defaultPatternSSvp":{"name":"defaultPattern","abstract":"\u003cp\u003eThe default pattern\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletMask.html#/s:14HyperwalletSDK0A4MaskV10scrubRegexSSSgvp":{"name":"scrubRegex","abstract":"\u003cp\u003eThe scrub regex, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletMask"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV7countrySSSgvp":{"name":"country","abstract":"\u003cp\u003eThe country\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV08transferD4TypeSSSgvp":{"name":"transferMethodType","abstract":"\u003cp\u003eThe transfer method type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV7profileSSSgvp":{"name":"profile","abstract":"\u003cp\u003eThe profile type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletTransferMethodConfiguration.html#/s:14HyperwalletSDK0A27TransferMethodConfigurationV11fieldGroupsAA10ConnectionVyAA0A10FieldGroupVGSgvp":{"name":"fieldGroups","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletFieldGroup.html\"\u003eHyperwalletFieldGroup\u003c/a\u003e\u003c/code\u003e, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfiguration"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV6lengthSSSgvp":{"name":"length","abstract":"\u003cp\u003eThe validation message length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV7patternSSSgvp":{"name":"pattern","abstract":"\u003cp\u003eThe validation message pattern, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletValidationMessage.html#/s:14HyperwalletSDK0A17ValidationMessageV5emptySSSgvp":{"name":"empty","abstract":"\u003cp\u003eThe validation message empty, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletValidationMessage"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe country code\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe country name\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV4feesAA10ConnectionVyAA0A3FeeVGSgvp":{"name":"fees","abstract":"\u003cp\u003eThe fees for transfer\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletTransferMethodType.html#/s:14HyperwalletSDK0A18TransferMethodTypeV15processingTimesAA10ConnectionVyAA0A14ProcessingTimeVGSgvp":{"name":"processingTimes","abstract":"\u003cp\u003eThe processing time for transfer\u003c/p\u003e","parent_name":"HyperwalletTransferMethodType"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV7countrySSSgvp":{"name":"country","abstract":"\u003cp\u003eThe country to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV18transferMethodTypeSSSgvp":{"name":"transferMethodType","abstract":"\u003cp\u003eThe transfer method type\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletProcessingTime.html#/s:14HyperwalletSDK0A14ProcessingTimeV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe value to process\u003c/p\u003e","parent_name":"HyperwalletProcessingTime"},"Structs/HyperwalletFieldSelectionOption.html#/s:14HyperwalletSDK0A20FieldSelectionOptionV5labelSSSgvp":{"name":"label","abstract":"\u003cp\u003eThe label\u003c/p\u003e","parent_name":"HyperwalletFieldSelectionOption"},"Structs/HyperwalletFieldSelectionOption.html#/s:14HyperwalletSDK0A20FieldSelectionOptionV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe value\u003c/p\u003e","parent_name":"HyperwalletFieldSelectionOption"},"Structs/HyperwalletFieldGroup.html#/s:14HyperwalletSDK0A10FieldGroupV5groupSSSgvp":{"name":"group","abstract":"\u003cp\u003eThe group\u003c/p\u003e","parent_name":"HyperwalletFieldGroup"},"Structs/HyperwalletFieldGroup.html#/s:14HyperwalletSDK0A10FieldGroupV6fieldsSayAA0aC0VGSgvp":{"name":"fields","abstract":"\u003cp\u003eThe list of HyperwalletField\u003c/p\u003e","parent_name":"HyperwalletFieldGroup"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV8dataTypeSSSgvp":{"name":"dataType","abstract":"\u003cp\u003eThe field data type, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV21fieldSelectionOptionsSayAA0acE6OptionVGSgvp":{"name":"fieldSelectionOptions","abstract":"\u003cp\u003eThe list of selection option, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV10isRequiredSbSgvp":{"name":"isRequired","abstract":"\u003cp\u003eIndicate if the field is mandatory, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV10isEditableSbSgvp":{"name":"isEditable","abstract":"\u003cp\u003eIndicate if the field is editable, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV5labelSSSgvp":{"name":"label","abstract":"\u003cp\u003eThe field label\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV9maxLengthSiSgvp":{"name":"maxLength","abstract":"\u003cp\u003eThe field maximum length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV9minLengthSiSgvp":{"name":"minLength","abstract":"\u003cp\u003eThe field minimum length, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe field name, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV11placeholderSSSgvp":{"name":"placeholder","abstract":"\u003cp\u003eThe field placeholder, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV17regularExpressionSSSgvp":{"name":"regularExpression","abstract":"\u003cp\u003eThe regular expression to validate the field value, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV17validationMessageAA0a10ValidationE0VSgvp":{"name":"validationMessage","abstract":"\u003cp\u003eThe validation message\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe field value\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV4maskAA0A4MaskVSgvp":{"name":"mask","abstract":"\u003cp\u003eThe mask, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletField.html#/s:14HyperwalletSDK0A5FieldV16fieldValueMaskedSbSgvp":{"name":"fieldValueMasked","abstract":"\u003cp\u003eIndicate if the field is masked, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletField"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV11feeRateTypeSSSgvp":{"name":"feeRateType","abstract":"\u003cp\u003eThe fee rate type (FLAT or PERCENT)\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV5valueSSSgvp":{"name":"value","abstract":"\u003cp\u003eThe fee value\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe fee currency\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV7minimumSSSgvp":{"name":"minimum","abstract":"\u003cp\u003eThe minimum fee, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletFee.html#/s:14HyperwalletSDK0A3FeeV7maximumSSSgvp":{"name":"maximum","abstract":"\u003cp\u003eThe maximum fee, or nil if none exists\u003c/p\u003e","parent_name":"HyperwalletFee"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe 3 letter ISO 4217-1 currency code\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe currency name\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCurrency.html#/s:14HyperwalletSDK0A8CurrencyV19transferMethodTypesAA10ConnectionVyAA0a8TransferE4TypeVGSgvp":{"name":"transferMethodTypes","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransferMethodType.html\"\u003eHyperwalletTransferMethodType\u003c/a\u003e\u003c/code\u003e nodes that connect to this currency node\u003c/p\u003e","parent_name":"HyperwalletCurrency"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV4codeSSSgvp":{"name":"code","abstract":"\u003cp\u003eThe 2 letter ISO 3166-1 country code\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV4nameSSSgvp":{"name":"name","abstract":"\u003cp\u003eThe country name\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/HyperwalletCountry.html#/s:14HyperwalletSDK0A7CountryV10currenciesAA10ConnectionVyAA0A8CurrencyVGSgvp":{"name":"currencies","abstract":"\u003cp\u003eThe \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletCurrency.html\"\u003eHyperwalletCurrency\u003c/a\u003e\u003c/code\u003e nodes that connect to this country node\u003c/p\u003e","parent_name":"HyperwalletCountry"},"Structs/Connection.html#/s:14HyperwalletSDK10ConnectionV5nodesSayxGSgvp":{"name":"nodes","abstract":"\u003cp\u003eArray of Connection type\u003c/p\u003e","parent_name":"Connection"},"Structs/HyperwalletBalance.html#/s:14HyperwalletSDK0A7BalanceV8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eThe currency of balance\u003c/p\u003e","parent_name":"HyperwalletBalance"},"Structs/HyperwalletBalance.html#/s:14HyperwalletSDK0A7BalanceV6amountSSSgvp":{"name":"amount","abstract":"\u003cp\u003eThe amount of balance\u003c/p\u003e","parent_name":"HyperwalletBalance"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV7messageSSvp":{"name":"message","abstract":"\u003cp\u003eThe error message\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV4codeSSvp":{"name":"code","abstract":"\u003cp\u003eThe error code\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV9fieldNameSSSgvp":{"name":"fieldName","abstract":"\u003cp\u003eThe field name\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV16relatedResourcesSaySSGSgvp":{"name":"relatedResources","abstract":"\u003cp\u003eThe list of related resources\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletError.html#/s:14HyperwalletSDK0A5ErrorV7message4code9fieldName16relatedResourcesACSS_S2SSgSaySSGSgtcfc":{"name":"init(message:code:fieldName:relatedResources:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletError\u003c/p\u003e","parent_name":"HyperwalletError"},"Structs/HyperwalletErrors/CodingKeys.html#/s:14HyperwalletSDK0A6ErrorsV10CodingKeysO9errorListyA2EmF":{"name":"errorList","parent_name":"CodingKeys"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorListSayAA0A5ErrorVGSgvp":{"name":"errorList","abstract":"\u003cp\u003eThe error list\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV13originalErrors0E0_pSgvp":{"name":"originalError","abstract":"\u003cp\u003eThe original error\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors/CodingKeys.html":{"name":"CodingKeys","abstract":"\u003cp\u003eThe CodingKeys for Hyperwallet errors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorListACSayAA0A5ErrorVG_tcfc":{"name":"init(errorList:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletErrors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/HyperwalletErrors.html#/s:14HyperwalletSDK0A6ErrorsV9errorList13originalErrorACSayAA0aG0VG_s0G0_pSgtcfc":{"name":"init(errorList:originalError:)","abstract":"\u003cp\u003eCreates an instance of HyperwalletErrors\u003c/p\u003e","parent_name":"HyperwalletErrors"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV11environmentSSSgvp":{"name":"environment","abstract":"\u003cp\u003eThe environment type\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV11insightsUrlSSSgvp":{"name":"insightsUrl","abstract":"\u003cp\u003eThe insights Url\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV6issuerSSvp":{"name":"issuer","abstract":"\u003cp\u003eThe issuer\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV9userTokenSSvp":{"name":"userToken","abstract":"\u003cp\u003eThe user token\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html#/s:14HyperwalletSDK13ConfigurationV12programModelSSSgvp":{"name":"programModel","abstract":"\u003cp\u003eThe program model\u003c/p\u003e","parent_name":"Configuration"},"Structs/Configuration.html":{"name":"Configuration","abstract":"\u003cp\u003eConfiguration object retrieved on successful authentication\u003c/p\u003e"},"Structs/HyperwalletErrors.html":{"name":"HyperwalletErrors","abstract":"\u003cp\u003eRepresentation of the Hyperwallet error list\u003c/p\u003e"},"Structs/HyperwalletError.html":{"name":"HyperwalletError","abstract":"\u003cp\u003eRepresentation of the Hyperwallet error entity.\u003c/p\u003e"},"Structs/HyperwalletBalance.html":{"name":"HyperwalletBalance","abstract":"\u003cp\u003eDetails of the balance.\u003c/p\u003e"},"Structs/Connection.html":{"name":"Connection","abstract":"\u003cp\u003eRepresentation of the GraphQL\u0026rsquo;s Connection type\u003c/p\u003e"},"Structs/HyperwalletCountry.html":{"name":"HyperwalletCountry","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletCountry\u003c/code\u003e node\u003c/p\u003e"},"Structs/HyperwalletCurrency.html":{"name":"HyperwalletCurrency","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletCurrency\u003c/code\u003e node\u003c/p\u003e"},"Structs/HyperwalletFee.html":{"name":"HyperwalletFee","abstract":"\u003cp\u003eRepresentation of the fee\u003c/p\u003e"},"Structs/HyperwalletField.html":{"name":"HyperwalletField","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field\u003c/p\u003e"},"Structs/HyperwalletFieldGroup.html":{"name":"HyperwalletFieldGroup","abstract":"\u003cp\u003eRepresentation of list of HyperwalletField and the group to which it belongs\u003c/p\u003e"},"Structs/HyperwalletFieldSelectionOption.html":{"name":"HyperwalletFieldSelectionOption","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field selection option\u003c/p\u003e"},"Structs/HyperwalletProcessingTime.html":{"name":"HyperwalletProcessingTime","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field processing times\u003c/p\u003e"},"Structs/HyperwalletTransferMethodType.html":{"name":"HyperwalletTransferMethodType","abstract":"\u003cp\u003eRepresentation of transfer method type\u003c/p\u003e"},"Structs/HyperwalletValidationMessage.html":{"name":"HyperwalletValidationMessage","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field validation message\u003c/p\u003e"},"Structs/HyperwalletTransferMethodConfiguration.html":{"name":"HyperwalletTransferMethodConfiguration","abstract":"\u003cp\u003eRepresentation of the transfer method configuration\u003c/p\u003e"},"Structs/HyperwalletMask.html":{"name":"HyperwalletMask","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field mask\u003c/p\u003e"},"Structs/HyperwalletConditionalPattern.html":{"name":"HyperwalletConditionalPattern","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field conditionalPatterns\u003c/p\u003e"},"Structs/HyperwalletTransferMethodConfigurationFieldQuery.html":{"name":"HyperwalletTransferMethodConfigurationFieldQuery","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationFieldQuery\u003c/code\u003e struct defines and builds a query to retrieve the fields"},"Structs/HyperwalletTransferMethodConfigurationKeysQuery.html":{"name":"HyperwalletTransferMethodConfigurationKeysQuery","abstract":"\u003cp\u003eThe \u0026lsquo;HyperwalletTransferMethodConfigurationKeysQuery\u0026rsquo; struct defines and builds a query to retrieve the key set"},"Structs/HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.html":{"name":"HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery","abstract":"\u003cp\u003eThe \u0026lsquo;HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery\u0026rsquo; struct defines"},"Structs/HyperwalletTransferMethodUpdateConfigurationFieldQuery.html":{"name":"HyperwalletTransferMethodUpdateConfigurationFieldQuery","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationFieldQuery\u003c/code\u003e"},"Structs/HyperwalletPageList.html":{"name":"HyperwalletPageList","abstract":"\u003cp\u003eRepresentation of subset content from a dataset\u003c/p\u003e"},"Structs/HyperwalletPageLink.html":{"name":"HyperwalletPageLink","abstract":"\u003cp\u003eRepresentation of the page link\u003c/p\u003e"},"Structs/HyperwalletPageParameter.html":{"name":"HyperwalletPageParameter","abstract":"\u003cp\u003eRepresentation of the relationship between the current document and the linked document\u003c/p\u003e"},"Structs/HyperwalletReceiptDetails.html":{"name":"HyperwalletReceiptDetails","abstract":"\u003cp\u003eDetails of the transaction.\u003c/p\u003e"},"Structs/HyperwalletReceipt.html":{"name":"HyperwalletReceipt","abstract":"\u003cp\u003eRepresentation of the Hyperwallet\u0026rsquo;s receipt.\u003c/p\u003e"},"Structs/HyperwalletStatusTransition.html":{"name":"HyperwalletStatusTransition","abstract":"\u003cp\u003eRepresentation of the status transition.\u003c/p\u003e"},"Structs/HyperwalletForeignExchange.html":{"name":"HyperwalletForeignExchange","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletForeignExchange\u003c/code\u003e\u003c/p\u003e"},"Structs/HyperwalletTransfer.html":{"name":"HyperwalletTransfer","abstract":"\u003cp\u003eRepresentation of a \u003ccode\u003eHyperwalletTransfer\u003c/code\u003e\u003c/p\u003e"},"Protocols/HyperwalletTransferMethodUpdateConfigurationField.html#/s:14HyperwalletSDK0A38TransferMethodUpdateConfigurationFieldP08transferdeF0AA0acdF0VSgyF":{"name":"transferMethodUpdateConfiguration()","abstract":"\u003cp\u003eReturns \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransferMethodConfiguration.html\"\u003eHyperwalletTransferMethodConfiguration\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethodUpdateConfigurationField"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP9countriesSayAA0A7CountryVGSgyF":{"name":"countries()","abstract":"\u003cp\u003eReturns the list of countries\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP10currencies4fromSayAA0A8CurrencyVGSgSS_tF":{"name":"currencies(from:)","abstract":"\u003cp\u003eReturns the list of currencies based on the country\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationKey.html#/s:14HyperwalletSDK0A30TransferMethodConfigurationKeyP08transferD5Types11countryCode08currencyJ0SayAA0acD4TypeVGSgSS_SStF":{"name":"transferMethodTypes(countryCode:currencyCode:)","abstract":"\u003cp\u003eReturns the list of transfer method types based on the parameters\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationKey"},"Protocols/HyperwalletTransferMethodConfigurationField.html#/s:14HyperwalletSDK0A32TransferMethodConfigurationFieldP11fieldGroupsSayAA0aF5GroupVGSgyF":{"name":"fieldGroups()","abstract":"\u003cp\u003eReturns a list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletField.html\"\u003eHyperwalletField\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationField"},"Protocols/HyperwalletTransferMethodConfigurationField.html#/s:14HyperwalletSDK0A32TransferMethodConfigurationFieldP08transferD4TypeAA0acdH0VSgyF":{"name":"transferMethodType()","abstract":"\u003cp\u003eReturns the list of transfer method types based on the parameters\u003c/p\u003e","parent_name":"HyperwalletTransferMethodConfigurationField"},"Protocols/HyperwalletAuthenticationTokenProvider.html#/s:14HyperwalletSDK0A27AuthenticationTokenProviderP17CompletionHandlera":{"name":"CompletionHandler","abstract":"\u003cp\u003eA callback interface to handle the submission of an authentication token or an error message in case of failure.\u003c/p\u003e","parent_name":"HyperwalletAuthenticationTokenProvider"},"Protocols/HyperwalletAuthenticationTokenProvider.html#/c:@M@HyperwalletSDK@objc(pl)HyperwalletAuthenticationTokenProvider(im)retrieveAuthenticationTokenWithCompletionHandler:":{"name":"retrieveAuthenticationToken(completionHandler:)","abstract":"\u003cp\u003eInvoked when the Hyperwallet iOS Core SDK requires an authentication token.\u003c/p\u003e","parent_name":"HyperwalletAuthenticationTokenProvider"},"Protocols/HyperwalletAuthenticationTokenProvider.html":{"name":"HyperwalletAuthenticationTokenProvider","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletAuthenticationTokenProvider\u003c/code\u003e protocol provides the Hyperwallet iOS Core SDK with an"},"Protocols/HyperwalletTransferMethodConfigurationField.html":{"name":"HyperwalletTransferMethodConfigurationField","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationField\u003c/code\u003e protocol for processing the transfer method"},"Protocols/HyperwalletTransferMethodConfigurationKey.html":{"name":"HyperwalletTransferMethodConfigurationKey","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodConfigurationKey\u003c/code\u003e protocol for processing the transfer method configuration"},"Protocols/HyperwalletTransferMethodUpdateConfigurationField.html":{"name":"HyperwalletTransferMethodUpdateConfigurationField","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletTransferMethodUpdateConfigurationField\u003c/code\u003e protocol for processing the update transfer method"},"Extensions/ISO8601DateFormatter.html#/s:So22NSISO8601DateFormatterC14HyperwalletSDKE14ignoreTimeZoneABvpZ":{"name":"ignoreTimeZone","abstract":"\u003cp\u003eThe thread-safe date formatter to work with ISO8601 date representations.","parent_name":"ISO8601DateFormatter"},"Extensions/ISO8601DateFormatter.html":{"name":"ISO8601DateFormatter","abstract":"\u003cp\u003eDate extension.\u003c/p\u003e"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4textyA2CmF":{"name":"text","abstract":"\u003cp\u003eThe text field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO9selectionyA2CmF":{"name":"selection","abstract":"\u003cp\u003eThe selecion option field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO7booleanyA2CmF":{"name":"boolean","abstract":"\u003cp\u003eThe boolean field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO6numberyA2CmF":{"name":"number","abstract":"\u003cp\u003eThe numeric field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5rangeyA2CmF":{"name":"range","abstract":"\u003cp\u003eThe range field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4dateyA2CmF":{"name":"date","abstract":"\u003cp\u003eThe date field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO8datetimeyA2CmF":{"name":"datetime","abstract":"\u003cp\u003eThe datetime field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO10expiryDateyA2CmF":{"name":"expiryDate","abstract":"\u003cp\u003eThe expiry date field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5phoneyA2CmF":{"name":"phone","abstract":"\u003cp\u003eThe phone field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO5emailyA2CmF":{"name":"email","abstract":"\u003cp\u003eThe email field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletDataType.html#/s:14HyperwalletSDK0A8DataTypeO4fileyA2CmF":{"name":"file","abstract":"\u003cp\u003eThe file field type\u003c/p\u003e","parent_name":"HyperwalletDataType"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO8businessyA2CmF":{"name":"business","abstract":"\u003cp\u003eReturned when a business error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO10unexpectedyA2CmF":{"name":"unexpected","abstract":"\u003cp\u003eReturned when an unexpected error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO10connectionyA2CmF":{"name":"connection","abstract":"\u003cp\u003eReturned when a connection error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletErrorGroup.html#/s:14HyperwalletSDK0A10ErrorGroupO14authenticationyA2CmF":{"name":"authentication","abstract":"\u003cp\u003eReturned when a authentication error is thrown\u003c/p\u003e","parent_name":"HyperwalletErrorGroup"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO7expiredyACSScACmF":{"name":"expired(_:)","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO10unexpectedyACSScACmF":{"name":"unexpected(_:)","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletAuthenticationErrorType.html#/s:14HyperwalletSDK0A23AuthenticationErrorTypeO7messageSSyF":{"name":"message()","abstract":"\u003cp\u003eGets the AuthenticationErrorType error message\u003c/p\u003e","parent_name":"HyperwalletAuthenticationErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO4httpyAcA0A6ErrorsV_SitcACmF":{"name":"http(_:_:)","abstract":"\u003cp\u003eReturned when an HTTP code is not in the range 2xx.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO05parseC0yAcA0A6ErrorsVcACmF":{"name":"parseError(_:)","abstract":"\u003cp\u003eReturned when a response parser process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO14notInitializedyAcA0A6ErrorsVcACmF":{"name":"notInitialized(_:)","abstract":"\u003cp\u003eReturned when the SDK was not initialized properly.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO10invalidUrlyAcA0A6ErrorsVcACmF":{"name":"invalidUrl(_:)","abstract":"\u003cp\u003eReturned when a provided URL is not valid\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO18transactionAbortedyAcA0A6ErrorsVcACmF":{"name":"transactionAborted(_:)","abstract":"\u003cp\u003eReturned when a transaction is explicitly aborted.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO014authenticationC0yAcA0a14AuthenticationcD0OcACmF":{"name":"authenticationError(_:)","abstract":"\u003cp\u003eReturned on authentication failure\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO10unexpectedyAcA0A6ErrorsVcACmF":{"name":"unexpected(_:)","abstract":"\u003cp\u003eReturned when an unexpected behavior happened.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO13graphQlErrorsyAcA0aG0VcACmF":{"name":"graphQlErrors(_:)","abstract":"\u003cp\u003eReturned when a GraphQL parser process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO14invalidRequestyAcA0A6ErrorsVcACmF":{"name":"invalidRequest(_:)","abstract":"\u003cp\u003eReturned when some step-in builds the request throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO010connectionC0yAcA0A6ErrorsVcACmF":{"name":"connectionError(_:)","abstract":"\u003cp\u003eReturned when during the connection process throws error.\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO5groupAA0aC5GroupOvp":{"name":"group","abstract":"\u003cp\u003eThe error type group\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO03getA6ErrorsAA0aF0VSgyF":{"name":"getHyperwalletErrors()","abstract":"\u003cp\u003eGets the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletErrors.html\"\u003eHyperwalletErrors\u003c/a\u003e\u003c/code\u003e based on the ErrorType\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO017getAuthenticationC0AA0afcD0OSgyF":{"name":"getAuthenticationError()","abstract":"\u003cp\u003eGets the \u003ccode\u003eAuthenticationErrorType\u003c/code\u003e on the ErrorType\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html#/s:14HyperwalletSDK0A9ErrorTypeO11getHttpCodeSiSgyF":{"name":"getHttpCode()","abstract":"\u003cp\u003eGets the HTTP Code based on the ErrorType.http\u003c/p\u003e","parent_name":"HyperwalletErrorType"},"Enums/HyperwalletErrorType.html":{"name":"HyperwalletErrorType","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletErrorType\u003c/code\u003e is the error type returned By Hyperwallet SDK.\u003c/p\u003e"},"Enums/HyperwalletAuthenticationErrorType.html":{"name":"HyperwalletAuthenticationErrorType","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwalletAuthenticationErrorType\u003c/code\u003e is the authentication error type returned By Hyperwallet SDK.\u003c/p\u003e"},"Enums/HyperwalletErrorGroup.html":{"name":"HyperwalletErrorGroup","abstract":"\u003cp\u003eRepresentation of the error type group\u003c/p\u003e"},"Enums/HyperwalletDataType.html":{"name":"HyperwalletDataType","abstract":"\u003cp\u003eRepresentation of the transfer method configuration field data type\u003c/p\u003e"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessContactAddressLine1yAESSF":{"name":"businessContactAddressLine1(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessContactAddressLine2yAESSF":{"name":"businessContactAddressLine2(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC19businessContactCityyAESSF":{"name":"businessContactCity(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC22businessContactCountryyAESSF":{"name":"businessContactCountry(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC25businessContactPostalCodeyAESSF":{"name":"businessContactPostalCode(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC19businessContactRoleyAeC08BusinessfG0OF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC28businessContactStateProvinceyAESSF":{"name":"businessContactStateProvince(_:)","abstract":"\u003cp\u003eSets the business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the business name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC21businessOperatingNameyAESSF":{"name":"businessOperatingName(_:)","abstract":"\u003cp\u003eSets the business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12businessTypeyAeC08BusinessF0OF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC9createdOnyAESSF":{"name":"createdOn(_:)","abstract":"\u003cp\u003eSets the datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5emailyAESSF":{"name":"email(_:)","abstract":"\u003cp\u003eSets the contact email address for the user account. This must be unique for your program, so you cannot","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC6genderyAeC6GenderOF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8languageyAESSF":{"name":"language(_:)","abstract":"\u003cp\u003eSets the preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC11profileTypeyAeC07ProfileF0OF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC12programTokenyAESSF":{"name":"programToken(_:)","abstract":"\u003cp\u003eSets the unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8setField3key5valueAeC0cF0O_SStF":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser/UserField.html\"\u003eUserField\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8setField3key5valueAESS_SStF":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the \u003ccode\u003eUserField.RawValue\u003c/code\u003e\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC6statusyAeC6StatusOF":{"name":"status(_:)","abstract":"\u003cp\u003eSets the user account status.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC8timeZoneyAESSF":{"name":"timeZone(_:)","abstract":"\u003cp\u003eSets the local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC5tokenyAESSF":{"name":"token(_:)","abstract":"\u003cp\u003eSets the unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletUser/Builder.html#/s:14HyperwalletSDK0A4UserC7BuilderC18verificationStatusyAeC012VerificationF0OF":{"name":"verificationStatus(_:)","abstract":"\u003cp\u003eSets the the user\u0026rsquo;s verification status. A user may be required to verify their identity after a certain","parent_name":"Builder"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO6failedyA2EmF":{"name":"failed","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is fail. Temporary status before changing to REQUIRED.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO11notRequiredyA2EmF":{"name":"notRequired","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is not require.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO8requiredyA2EmF":{"name":"required","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is require.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO11underReviewyA2EmF":{"name":"underReview","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is under review.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/VerificationStatus.html#/s:14HyperwalletSDK0A4UserC18VerificationStatusO8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status is verified.\u003c/p\u003e","parent_name":"VerificationStatus"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eThe user account is activated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO11deactivatedyA2EmF":{"name":"deactivated","abstract":"\u003cp\u003eThe user account is deactivated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO6frozenyA2EmF":{"name":"frozen","abstract":"\u003cp\u003eThe user account is frozen.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO6lockedyA2EmF":{"name":"locked","abstract":"\u003cp\u003eThe user account is locked.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/Status.html#/s:14HyperwalletSDK0A4UserC6StatusO12preActivatedyA2EmF":{"name":"preActivated","abstract":"\u003cp\u003eThe user account is pre activated.\u003c/p\u003e","parent_name":"Status"},"Classes/HyperwalletUser/ProfileType.html#/s:14HyperwalletSDK0A4UserC11ProfileTypeO8businessyA2EmF":{"name":"business","abstract":"\u003cp\u003eThe business profile type.\u003c/p\u003e","parent_name":"ProfileType"},"Classes/HyperwalletUser/ProfileType.html#/s:14HyperwalletSDK0A4UserC11ProfileTypeO10individualyA2EmF":{"name":"individual","abstract":"\u003cp\u003eThe individual profile type.\u003c/p\u003e","parent_name":"ProfileType"},"Classes/HyperwalletUser/Gender.html#/s:14HyperwalletSDK0A4UserC6GenderO6femaleyA2EmF":{"name":"female","abstract":"\u003cp\u003eThe female gender\u003c/p\u003e","parent_name":"Gender"},"Classes/HyperwalletUser/Gender.html#/s:14HyperwalletSDK0A4UserC6GenderO4maleyA2EmF":{"name":"male","abstract":"\u003cp\u003eThe male gender\u003c/p\u003e","parent_name":"Gender"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO8directoryA2EmF":{"name":"director","abstract":"\u003cp\u003eThe director role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO5otheryA2EmF":{"name":"other","abstract":"\u003cp\u003eThe other role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessContactRole.html#/s:14HyperwalletSDK0A4UserC19BusinessContactRoleO5owneryA2EmF":{"name":"owner","abstract":"\u003cp\u003eThe owner role\u003c/p\u003e","parent_name":"BusinessContactRole"},"Classes/HyperwalletUser/BusinessType.html#/s:14HyperwalletSDK0A4UserC12BusinessTypeO11corporationyA2EmF":{"name":"corporation","abstract":"\u003cp\u003eThe corporation business type\u003c/p\u003e","parent_name":"BusinessType"},"Classes/HyperwalletUser/BusinessType.html#/s:14HyperwalletSDK0A4UserC12BusinessTypeO11partnershipyA2EmF":{"name":"partnership","abstract":"\u003cp\u003eThe partnership business type\u003c/p\u003e","parent_name":"BusinessType"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12addressLine1yA2EmF":{"name":"addressLine1","abstract":"\u003cp\u003eThe user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12addressLine2yA2EmF":{"name":"addressLine2","abstract":"\u003cp\u003eThe user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessContactAddressLine1yA2EmF":{"name":"businessContactAddressLine1","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessContactAddressLine2yA2EmF":{"name":"businessContactAddressLine2","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO19businessContactCityyA2EmF":{"name":"businessContactCity","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO22businessContactCountryyA2EmF":{"name":"businessContactCountry","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO25businessContactPostalCodeyA2EmF":{"name":"businessContactPostalCode","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO19businessContactRoleyA2EmF":{"name":"businessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO28businessContactStateProvinceyA2EmF":{"name":"businessContactStateProvince","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12businessNameyA2EmF":{"name":"businessName","abstract":"\u003cp\u003eThe business name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO21businessOperatingNameyA2EmF":{"name":"businessOperatingName","abstract":"\u003cp\u003eThe business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO27businessRegistrationCountryyA2EmF":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the business is registered.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO22businessRegistrationIdyA2EmF":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO33businessRegistrationStateProvinceyA2EmF":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the business is registered.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12businessTypeyA2EmF":{"name":"businessType","abstract":"\u003cp\u003eThe business type.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO4cityyA2EmF":{"name":"city","abstract":"\u003cp\u003eThe user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO06clientC2IdyA2EmF":{"name":"clientUserId","abstract":"\u003cp\u003eA client-defined identifier for the user. This is the unique ID assigned to the user","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO7countryyA2EmF":{"name":"country","abstract":"\u003cp\u003eThe user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO14countryOfBirthyA2EmF":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO20countryOfNationalityyA2EmF":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO9createdOnyA2EmF":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss).","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11dateOfBirthyA2EmF":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO16driversLicenseIdyA2EmF":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO5emailyA2EmF":{"name":"email","abstract":"\u003cp\u003eThe contact email address for the user account. This must be unique for your program,","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10employerIdyA2EmF":{"name":"employerId","abstract":"\u003cp\u003eThe user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO9firstNameyA2EmF":{"name":"firstName","abstract":"\u003cp\u003eThe user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO6genderyA2EmF":{"name":"gender","abstract":"\u003cp\u003eThe user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12governmentIdyA2EmF":{"name":"governmentId","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO16governmentIdTypeyA2EmF":{"name":"governmentIdType","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8languageyA2EmF":{"name":"language","abstract":"\u003cp\u003eThe preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8lastNameyA2EmF":{"name":"lastName","abstract":"\u003cp\u003eThe user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10middleNameyA2EmF":{"name":"middleName","abstract":"\u003cp\u003eThe user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12mobileNumberyA2EmF":{"name":"mobileNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10passportIdyA2EmF":{"name":"passportId","abstract":"\u003cp\u003eThe user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11phoneNumberyA2EmF":{"name":"phoneNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO10postalCodeyA2EmF":{"name":"postalCode","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO11profileTypeyA2EmF":{"name":"profileType","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO12programTokenyA2EmF":{"name":"programToken","abstract":"\u003cp\u003eThe unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO13stateProvinceyA2EmF":{"name":"stateProvince","abstract":"\u003cp\u003eThe user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO6statusyA2EmF":{"name":"status","abstract":"\u003cp\u003eThe user account status.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO8timeZoneyA2EmF":{"name":"timeZone","abstract":"\u003cp\u003eThe local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO5tokenyA2EmF":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html#/s:14HyperwalletSDK0A4UserC0C5FieldO18verificationStatusyA2EmF":{"name":"verificationStatus","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status. A user may be required to verify their identity after","parent_name":"UserField"},"Classes/HyperwalletUser/UserField.html":{"name":"UserField","abstract":"\u003cp\u003eRepresentation of the user field type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/BusinessType.html":{"name":"BusinessType","abstract":"\u003cp\u003eThe business type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/BusinessContactRole.html":{"name":"BusinessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Gender.html":{"name":"Gender","abstract":"\u003cp\u003eRepresentation of the gender.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/ProfileType.html":{"name":"ProfileType","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Status.html":{"name":"Status","abstract":"\u003cp\u003eRepresentation of the user account status type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/VerificationStatus.html":{"name":"VerificationStatus","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s verification status type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe user\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe user\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactAddressLine1":{"name":"businessContactAddressLine1","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactAddressLine2":{"name":"businessContactAddressLine2","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactCity":{"name":"businessContactCity","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactCountry":{"name":"businessContactCountry","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s country,\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactPostalCode":{"name":"businessContactPostalCode","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC19businessContactRoleAC08BusinesseF0OSgvp":{"name":"businessContactRole","abstract":"\u003cp\u003eThe user\u0026rsquo;s role in the organization\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessContactStateProvince":{"name":"businessContactStateProvince","abstract":"\u003cp\u003eThe business contact\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe business name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessOperatingName":{"name":"businessOperatingName","abstract":"\u003cp\u003eThe business\u0026rsquo; operating name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the business is registered.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe business registration number or identifier assigned by a government body.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the business is registered.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC12businessTypeAC08BusinessE0OSgvp":{"name":"businessType","abstract":"\u003cp\u003eThe business type\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)city":{"name":"city","abstract":"\u003cp\u003eThe user\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)clientUserId":{"name":"clientUserId","abstract":"\u003cp\u003eA client-defined identifier for the user. This is the unique ID assigned to the user on your system.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)country":{"name":"country","abstract":"\u003cp\u003eThe user\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe user\u0026rsquo;s country of citizenship or nationality.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)createdOn":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime the user account was created on in ISO 8601 format (YYYY-MM-DDThh:mm:ss). Note that the timezone","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe user\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe user\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)email":{"name":"email","abstract":"\u003cp\u003eThe contact email address for the user account. This must be unique for your program, so you cannot have two","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe user\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe user\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC6genderAC6GenderOSgvp":{"name":"gender","abstract":"\u003cp\u003eThe user\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe user\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)language":{"name":"language","abstract":"\u003cp\u003eThe preferred language for the user\u0026rsquo;s account. Defaults to English if not provided.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe user\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe user\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe user\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe user\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe user\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC11profileTypeAC07ProfileE0OSgvp":{"name":"profileType","abstract":"\u003cp\u003eThe user\u0026rsquo;s profile type. See \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser/ProfileType.html\"\u003eProfileType\u003c/a\u003e\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)programToken":{"name":"programToken","abstract":"\u003cp\u003eThe unique identifier for the program to which the user will belong.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe user\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC6statusAC6StatusOSgvp":{"name":"status","abstract":"\u003cp\u003eThe user account status.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)timeZone":{"name":"timeZone","abstract":"\u003cp\u003eThe local time of a region or a country. e.g. GMT, PST, \u0026hellip;\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(py)token":{"name":"token","abstract":"\u003cp\u003eThe unique, auto-generated user identifier. Max 64 characters, prefixed with \u0026ldquo;usr-\u0026rdquo;.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:14HyperwalletSDK0A4UserC18verificationStatusAC012VerificationE0OSgvp":{"name":"verificationStatus","abstract":"\u003cp\u003eThe user\u0026rsquo;s verification status. A user may be required to verify their identity after a certain","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletUser(im)getField:":{"name":"getField(_:)","abstract":"\u003cp\u003eGets the field value\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletUser/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletUser"},"Classes/HyperwalletVenmoQueryParam.html#/s:14HyperwalletSDK0A15VenmoQueryParamC02toD0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletVenmoQueryParam"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC9accountIdyAESSF":{"name":"accountId(_:)","abstract":"\u003cp\u003eSets the accountId address\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount/Builder.html#/s:14HyperwalletSDK0A12VenmoAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletVenmoAccount.html#/s:14HyperwalletSDK0A12VenmoAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletVenmoAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletVenmoAccount(py)accountId":{"name":"accountId","abstract":"\u003cp\u003eThe accountId as phone number.\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletVenmoAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletVenmoAccount"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11bankAccountyA2EmF":{"name":"bankAccount","abstract":"\u003cp\u003eWhen the transfer method is Bank Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO8bankCardyA2EmF":{"name":"bankCard","abstract":"\u003cp\u003eWhen the transfer method is Bank Card\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO13payPalAccountyA2EmF":{"name":"payPalAccount","abstract":"\u003cp\u003eWhen the transfer method is PayPal Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11wireAccountyA2EmF":{"name":"wireAccount","abstract":"\u003cp\u003eWhen the transfer method is Wire Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO11prepaidCardyA2EmF":{"name":"prepaidCard","abstract":"\u003cp\u003eWhen the transfer method is Prepaid Card\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO12venmoAccountyA2EmF":{"name":"venmoAccount","abstract":"\u003cp\u003eWhen the transfer method is Venmo Account\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E4TypeO10paperCheckyA2EmF":{"name":"paperCheck","abstract":"\u003cp\u003eWhen the transfer method is Paper Check\u003c/p\u003e","parent_name":"QueryType"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO18ascendantCreatedOnyA2EmF":{"name":"ascendantCreatedOn","abstract":"\u003cp\u003eSort the result by ascendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO15ascendantStatusyA2EmF":{"name":"ascendantStatus","abstract":"\u003cp\u003eSort the result by ascendant status\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO19descendantCreatedOnyA2EmF":{"name":"descendantCreatedOn","abstract":"\u003cp\u003eSort the result by descendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E8SortableO16descendantStatusyA2EmF":{"name":"descendantStatus","abstract":"\u003cp\u003eSort the result by descendant status\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO9activatedyA2EmF":{"name":"activated","abstract":"\u003cp\u003eFilter by activated transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO11deActivatedyA2EmF":{"name":"deActivated","abstract":"\u003cp\u003eFilter by deActivated transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO7invalidyA2EmF":{"name":"invalid","abstract":"\u003cp\u003eFilter only invalid transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO12lostOrStolenyA2EmF":{"name":"lostOrStolen","abstract":"\u003cp\u003eFilter only lost or stolen prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO12preActivatedyA2EmF":{"name":"preActivated","abstract":"\u003cp\u003eFilter by preActivated prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO9suspendedyA2EmF":{"name":"suspended","abstract":"\u003cp\u003eFilter only suspended prepaid cards\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC0E6StatusO8verifiedyA2EmF":{"name":"verified","abstract":"\u003cp\u003eFilter only verified transfer methods\u003c/p\u003e","parent_name":"QueryStatus"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC6statusSSSgvp":{"name":"status","abstract":"\u003cp\u003eReturns transfer method with this status.\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC4typeSSSgvp":{"name":"type","abstract":"\u003cp\u003eReturns transfer method of that type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QueryStatus.html":{"name":"QueryStatus","abstract":"\u003cp\u003eRepresentation of the transfer method status\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the field\u0026rsquo;s sortable\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam/QueryType.html":{"name":"QueryType","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethodQueryParam.html#/s:14HyperwalletSDK0A24TransferMethodQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletTransferMethodQueryParam"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11bankAccountyA2EmF":{"name":"bankAccount","abstract":"\u003cp\u003eWhen the transfer method is Bank Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO8bankCardyA2EmF":{"name":"bankCard","abstract":"\u003cp\u003eWhen the transfer method is Bank Card\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO13payPalAccountyA2EmF":{"name":"payPalAccount","abstract":"\u003cp\u003eWhen the transfer method is PayPal Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11wireAccountyA2EmF":{"name":"wireAccount","abstract":"\u003cp\u003eWhen the transfer method is Wire Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO11prepaidCardyA2EmF":{"name":"prepaidCard","abstract":"\u003cp\u003eWhen the transfer method is Prepaid Card\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO12venmoAccountyA2EmF":{"name":"venmoAccount","abstract":"\u003cp\u003eWhen the transfer method is Venmo Account\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodType.html#/s:14HyperwalletSDK0A14TransferMethodC0cD4TypeO10paperCheckyA2EmF":{"name":"paperCheck","abstract":"\u003cp\u003ewhen transfer method is paper check\u003c/p\u003e","parent_name":"TransferMethodType"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9createdOnyA2EmF":{"name":"createdOn","abstract":"\u003cp\u003eThe datetime when the transfer method was created on.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6statusyA2EmF":{"name":"status","abstract":"\u003cp\u003eThe transfer method status transition.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO5tokenyA2EmF":{"name":"token","abstract":"\u003cp\u003eThe transfer method identifier.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08transferD7CountryyA2EmF":{"name":"transferMethodCountry","abstract":"\u003cp\u003eThe transfer method country.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08transferD8CurrencyyA2EmF":{"name":"transferMethodCurrency","abstract":"\u003cp\u003eThe transfer method currency.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO4typeyA2EmF":{"name":"type","abstract":"\u003cp\u003eThe transfer method type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12addressLine1yA2EmF":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12addressLine2yA2EmF":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO13bankAccountIdyA2EmF":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent. If you are providing an IBAN,","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO18bankAccountPurposeyA2EmF":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO23bankAccountRelationshipyA2EmF":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6bankIdyA2EmF":{"name":"bankId","abstract":"\u003cp\u003eThe bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8bankNameyA2EmF":{"name":"bankName","abstract":"\u003cp\u003eThe bank name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8branchIdyA2EmF":{"name":"branchId","abstract":"\u003cp\u003eThe branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10branchNameyA2EmF":{"name":"branchName","abstract":"\u003cp\u003eThe branch name\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO19businessContactRoleyA2EmF":{"name":"businessContactRole","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12businessNameyA2EmF":{"name":"businessName","abstract":"\u003cp\u003eThe name of the transfer method holder\u0026rsquo;s business\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO27businessRegistrationCountryyA2EmF":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the transfer method holder\u0026rsquo;s business is registered\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO22businessRegistrationIdyA2EmF":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier, as","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO33businessRegistrationStateProvinceyA2EmF":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12businessTypeyA2EmF":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO4cityyA2EmF":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO7countryyA2EmF":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO14countryOfBirthyA2EmF":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe country where bank account holder born\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20countryOfNationalityyA2EmF":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe Nationality of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11dateOfBirthyA2EmF":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16driversLicenseIdyA2EmF":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe LicenseId of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10employerIdyA2EmF":{"name":"employerId","abstract":"\u003cp\u003eThe employer Id of the bank account holder\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9firstNameyA2EmF":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO6genderyA2EmF":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12governmentIdyA2EmF":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16governmentIdTypeyA2EmF":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government IdType\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO25intermediaryBankAccountIdyA2EmF":{"name":"intermediaryBankAccountId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AccountId\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO28intermediaryBankAddressLine1yA2EmF":{"name":"intermediaryBankAddressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AddressLine1\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO28intermediaryBankAddressLine2yA2EmF":{"name":"intermediaryBankAddressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank AddressLine2\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20intermediaryBankCityyA2EmF":{"name":"intermediaryBankCity","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s City\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO23intermediaryBankCountryyA2EmF":{"name":"intermediaryBankCountry","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s Country\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO18intermediaryBankIdyA2EmF":{"name":"intermediaryBankId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank Id\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO20intermediaryBankNameyA2EmF":{"name":"intermediaryBankName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank Name\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO26intermediaryBankPostalCodeyA2EmF":{"name":"intermediaryBankPostalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary PostalCode:\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO29intermediaryBankStateProvinceyA2EmF":{"name":"intermediaryBankStateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s Intermediary Bank\u0026rsquo;s State and Province\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8lastNameyA2EmF":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10middleNameyA2EmF":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12mobileNumberyA2EmF":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s mobile number\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10passportIdyA2EmF":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport Id\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11phoneNumberyA2EmF":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10postalCodeyA2EmF":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11profileTypeyA2EmF":{"name":"profileType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO13stateProvinceyA2EmF":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16wireInstructionsyA2EmF":{"name":"wireInstructions","abstract":"\u003cp\u003eThe wire transfer instructions\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9cardBrandyA2EmF":{"name":"cardBrand","abstract":"\u003cp\u003eThe card brand.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO10cardNumberyA2EmF":{"name":"cardNumber","abstract":"\u003cp\u003eThe 16-digit card number.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO8cardTypeyA2EmF":{"name":"cardType","abstract":"\u003cp\u003eThe bank card type.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO3cvvyA2EmF":{"name":"cvv","abstract":"\u003cp\u003eThe card security code which is embossed or printed on the card.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO12dateOfExpiryyA2EmF":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe expiration date for the card (YYYY-MM).\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO16primaryCardTokenyA2EmF":{"name":"primaryCardToken","abstract":"\u003cp\u003eThe primary card token\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO5emailyA2EmF":{"name":"email","abstract":"\u003cp\u003eThe email address associated with the PayPal account.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9accountIdyA2EmF":{"name":"accountId","abstract":"\u003cp\u003eThe mobile number associated with the Venmo account.\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO11cardPackageyA2EmF":{"name":"cardPackage","abstract":"\u003cp\u003eThe card\u0026rsquo;s package\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO9userTokenyA2EmF":{"name":"userToken","abstract":"\u003cp\u003eThe user token\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html#/s:14HyperwalletSDK0A14TransferMethodC0cD5FieldO08shippingD0yA2EmF":{"name":"shippingMethod","abstract":"\u003cp\u003eThe shipping method\u003c/p\u003e","parent_name":"TransferMethodField"},"Classes/HyperwalletTransferMethod/TransferMethodField.html":{"name":"TransferMethodField","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s field type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod/TransferMethodType.html":{"name":"TransferMethodType","abstract":"\u003cp\u003eRepresentation of the transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)init":{"name":"init()","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletTransferMethod\u003c/code\u003e\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)getField:":{"name":"getField(_:)","abstract":"\u003cp\u003eGets the field value\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(im)setFieldWithKey:value:":{"name":"setField(key:value:)","abstract":"\u003cp\u003eSets the field value based on the key\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)createdOn":{"name":"createdOn","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s created time\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)profileType":{"name":"profileType","abstract":"\u003cp\u003eThe transfer method holder\u0026rsquo;s profile type, e.g. INDIVIDUAL or BUSINESS.\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)status":{"name":"status","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s status\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)token":{"name":"token","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s token\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)transferMethodCountry":{"name":"transferMethodCountry","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s country\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)transferMethodCurrency":{"name":"transferMethodCurrency","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s currency\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletTransferMethod.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletTransferMethod(py)type":{"name":"type","abstract":"\u003cp\u003eThe transfer method\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletTransferMethod"},"Classes/HyperwalletPrepaidCardQueryParam.html#/s:14HyperwalletSDK0A21PrepaidCardQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPrepaidCardQueryParam"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC25transferMethodProfileTypeAESS_tcfc":{"name":"init(transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC11cardPackageyAESSF":{"name":"cardPackage(_:)","abstract":"\u003cp\u003eSets the card package\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC9userTokenyAESSF":{"name":"userToken(_:)","abstract":"\u003cp\u003eSets userToken for an instant issue card\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard/Builder.html#/s:14HyperwalletSDK0A11PrepaidCardC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPrepaidCard.html#/s:14HyperwalletSDK0A11PrepaidCardC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardType":{"name":"cardType","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s type\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardPackage":{"name":"cardPackage","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s package\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardNumber":{"name":"cardNumber","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s number\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)cardBrand":{"name":"cardBrand","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s brand\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s expiry date\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)primaryCardToken":{"name":"primaryCardToken","abstract":"\u003cp\u003eThe primary prepaid card\u0026rsquo;s token\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPrepaidCard(py)userToken":{"name":"userToken","abstract":"\u003cp\u003eThe prepaid card\u0026rsquo;s user token (instant issue cards only)\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPrepaidCard/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPrepaidCard"},"Classes/HyperwalletPayPalAccountQueryParam.html#/s:14HyperwalletSDK0A23PayPalAccountQueryParamC02toF0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPayPalAccountQueryParam"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC21transferMethodCountry0gH8Currency0gH11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5emailyAESSF":{"name":"email(_:)","abstract":"\u003cp\u003eSets the email address\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount/Builder.html#/s:14HyperwalletSDK0A13PayPalAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPayPalAccount.html#/s:14HyperwalletSDK0A13PayPalAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPayPalAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPayPalAccount(py)email":{"name":"email","abstract":"\u003cp\u003eThe email address.\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPayPalAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPayPalAccount"},"Classes/HyperwalletPaperCheckQueryParam.html#/s:14HyperwalletSDK0A20PaperCheckQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletPaperCheckQueryParam"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletPaperCheck.Builder\u003c/code\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileType0fgK0AESS_S3Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:transferMethodType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletPaperCheck.Builder\u003c/code\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC23bankAccountRelationshipyAESSF":{"name":"bankAccountRelationship(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC14shippingMethodyAESSF":{"name":"shippingMethod(_:)","abstract":"\u003cp\u003eSets the shipping method for paper check.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC6genderyAESSF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC19businessContactRoleyAESSF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC12businessTypeyAESSF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck/Builder.html#/s:14HyperwalletSDK0A10PaperCheckC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletPaperCheck.html#/s:14HyperwalletSDK0A10PaperCheckC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)bankAccountRelationship":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)city":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)country":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)shippingMethod":{"name":"shippingMethod","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)businessType":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s nationality country.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)gender":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletPaperCheck(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletPaperCheck/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletPaperCheck"},"Classes/HyperwalletBankCardQueryParam.html#/s:14HyperwalletSDK0A18BankCardQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletBankCardQueryParam"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankCard.Builder\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileTypeAESS_S2Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankCard.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC10cardNumberyAESSF":{"name":"cardNumber(_:)","abstract":"\u003cp\u003eSets the card number\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC3cvvyAESSF":{"name":"cvv(_:)","abstract":"\u003cp\u003eSets the card security code which is embossed or printed on the card.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard/Builder.html#/s:14HyperwalletSDK0A8BankCardC7BuilderC12dateOfExpiryyAESSF":{"name":"dateOfExpiry(_:)","abstract":"\u003cp\u003eSets the expiration date.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankCard.html#/s:14HyperwalletSDK0A8BankCardC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardBrand":{"name":"cardBrand","abstract":"\u003cp\u003eThe card brand\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardNumber":{"name":"cardNumber","abstract":"\u003cp\u003eThe card number\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)cardType":{"name":"cardType","abstract":"\u003cp\u003eThe card type\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankCard(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"\u003cp\u003eThe expiration date.\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankCard/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletBankCard"},"Classes/HyperwalletBankAccountQueryParam.html#/s:14HyperwalletSDK0A21BankAccountQueryParamC02toE0SDyS2SGyF":{"name":"toQuery()","parent_name":"HyperwalletBankAccountQueryParam"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC5tokenAESS_tcfc":{"name":"init(token:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankAccount.Builder\u003c/code\u003e based on the required parameter to update","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC21transferMethodCountry0fG8Currency0fG11ProfileType0fgK0AESS_S3Stcfc":{"name":"init(transferMethodCountry:transferMethodCurrency:transferMethodProfileType:transferMethodType:)","abstract":"\u003cp\u003eCreates a new instance of the \u003ccode\u003eHyperwalletBankAccount.Builder\u003c/code\u003e based on the required parameters to create","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12addressLine1yAESSF":{"name":"addressLine1(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12addressLine2yAESSF":{"name":"addressLine2(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD2IdyAESSF":{"name":"bankAccountId(_:)","abstract":"\u003cp\u003eSets the bank account number, IBAN or equivalent. If you are providing an IBAN, the first two","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD7PurposeyAESSF":{"name":"bankAccountPurpose(_:)","abstract":"\u003cp\u003eSets the purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC04bankD12RelationshipyAESSF":{"name":"bankAccountRelationship(_:)","abstract":"\u003cp\u003eSets the user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC6bankIdyAESSF":{"name":"bankId(_:)","abstract":"\u003cp\u003eSets the bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8bankNameyAESSF":{"name":"bankName(_:)","abstract":"\u003cp\u003eSets the bank name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8branchIdyAESSF":{"name":"branchId(_:)","abstract":"\u003cp\u003eSets the branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10branchNameyAESSF":{"name":"branchName(_:)","abstract":"\u003cp\u003eSets the branch name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC19businessContactRoleyAESSF":{"name":"businessContactRole(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12businessNameyAESSF":{"name":"businessName(_:)","abstract":"\u003cp\u003eSets the name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC27businessRegistrationCountryyAESSF":{"name":"businessRegistrationCountry(_:)","abstract":"\u003cp\u003eSets the country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC22businessRegistrationIdyAESSF":{"name":"businessRegistrationId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC33businessRegistrationStateProvinceyAESSF":{"name":"businessRegistrationStateProvince(_:)","abstract":"\u003cp\u003eSets the state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12businessTypeyAESSF":{"name":"businessType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC4cityyAESSF":{"name":"city(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC7countryyAESSF":{"name":"country(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC14countryOfBirthyAESSF":{"name":"countryOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC20countryOfNationalityyAESSF":{"name":"countryOfNationality(_:)","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11dateOfBirthyAESSF":{"name":"dateOfBirth(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16driversLicenseIdyAESSF":{"name":"driversLicenseId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10employerIdyAESSF":{"name":"employerId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC9firstNameyAESSF":{"name":"firstName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC6genderyAESSF":{"name":"gender(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12governmentIdyAESSF":{"name":"governmentId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16governmentIdTypeyAESSF":{"name":"governmentIdType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediarycD2IdyAESSF":{"name":"intermediaryBankAccountId(_:)","abstract":"\u003cp\u003eSets the account number at the intermediary bank.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC12AddressLine1yAESSF":{"name":"intermediaryBankAddressLine1(_:)","abstract":"\u003cp\u003eSets the intermediary bank street address.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC12AddressLine2yAESSF":{"name":"intermediaryBankAddressLine2(_:)","abstract":"\u003cp\u003eSets the intermediary bank street address, second line.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC4CityyAESSF":{"name":"intermediaryBankCity(_:)","abstract":"\u003cp\u003eSets the intermediary bank city.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC7CountryyAESSF":{"name":"intermediaryBankCountry(_:)","abstract":"\u003cp\u003eSets the intermediary bank country.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC2IdyAESSF":{"name":"intermediaryBankId(_:)","abstract":"\u003cp\u003eSets the intermediary bank\u0026rsquo;s 11-character SWIFT code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC4NameyAESSF":{"name":"intermediaryBankName(_:)","abstract":"\u003cp\u003eSets the intermediary bank name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC10PostalCodeyAESSF":{"name":"intermediaryBankPostalCode(_:)","abstract":"\u003cp\u003eSets the intermediary bank postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC012intermediaryC13StateProvinceyAESSF":{"name":"intermediaryBankStateProvince(_:)","abstract":"\u003cp\u003eSets the intermediary bank state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC8lastNameyAESSF":{"name":"lastName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10middleNameyAESSF":{"name":"middleName(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC12mobileNumberyAESSF":{"name":"mobileNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10passportIdyAESSF":{"name":"passportId(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11phoneNumberyAESSF":{"name":"phoneNumber(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC10postalCodeyAESSF":{"name":"postalCode(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC11profileTypeyAESSF":{"name":"profileType(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s profile type.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC13stateProvinceyAESSF":{"name":"stateProvince(_:)","abstract":"\u003cp\u003eSets the bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC4typeyAESSF":{"name":"type(_:)","abstract":"\u003cp\u003eSets the type of transfer method, e.g. BANK_ACCOUNT or WIRE_ACCOUNT.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC16wireInstructionsyAESSF":{"name":"wireInstructions(_:)","abstract":"\u003cp\u003eSets wire transfer instructions.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount/Builder.html#/s:14HyperwalletSDK0A11BankAccountC7BuilderC5buildACyF":{"name":"build()","abstract":"\u003cp\u003eBuilds a new instance of the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e.\u003c/p\u003e","parent_name":"Builder"},"Classes/HyperwalletBankAccount.html#/s:14HyperwalletSDK0A11BankAccountC4fromACs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"\u003cp\u003eThe required initializer\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)addressLine1":{"name":"addressLine1","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s street address.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)addressLine2":{"name":"addressLine2","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s address, second line.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountId":{"name":"bankAccountId","abstract":"\u003cp\u003eThe bank account number, IBAN or equivalent. If you are providing an IBAN, the first two","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountPurpose":{"name":"bankAccountPurpose","abstract":"\u003cp\u003eThe purpose of the bank account (e.g. checking, savings, etc).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankAccountRelationship":{"name":"bankAccountRelationship","abstract":"\u003cp\u003eThe user\u0026rsquo;s relationship with the bank account holder.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankId":{"name":"bankId","abstract":"\u003cp\u003eThe bank code or equivalent (e.g. BIC/SWIFT code).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)bankName":{"name":"bankName","abstract":"\u003cp\u003eThe bank name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)branchId":{"name":"branchId","abstract":"\u003cp\u003eThe branch code, transit number, routing number or equivalent.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)branchName":{"name":"branchName","abstract":"\u003cp\u003eThe branch name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessContactRole":{"name":"businessContactRole","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s role in the organization.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessName":{"name":"businessName","abstract":"\u003cp\u003eThe name of the bank account holder\u0026rsquo;s business.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationCountry":{"name":"businessRegistrationCountry","abstract":"\u003cp\u003eThe country where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationId":{"name":"businessRegistrationId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business registration number or identifier,","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessRegistrationStateProvince":{"name":"businessRegistrationStateProvince","abstract":"\u003cp\u003eThe state, province or region where the bank account holder\u0026rsquo;s business is registered.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)businessType":{"name":"businessType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s business type.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)city":{"name":"city","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s city.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)country":{"name":"country","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)countryOfBirth":{"name":"countryOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s birth country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)countryOfNationality":{"name":"countryOfNationality","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s nationality country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)dateOfBirth":{"name":"dateOfBirth","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s date of birth (All users must be at least 13 years old).\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)driversLicenseId":{"name":"driversLicenseId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s driver\u0026rsquo;s license number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)employerId":{"name":"employerId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s employer identifier, generally used for tax purposes.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)firstName":{"name":"firstName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s first name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)gender":{"name":"gender","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s gender.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)governmentId":{"name":"governmentId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID number, such as a Social Security Number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)governmentIdType":{"name":"governmentIdType","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s government ID type.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAccountId":{"name":"intermediaryBankAccountId","abstract":"\u003cp\u003eThe account number at the intermediary bank.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAddressLine1":{"name":"intermediaryBankAddressLine1","abstract":"\u003cp\u003eThe intermediary bank street address.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankAddressLine2":{"name":"intermediaryBankAddressLine2","abstract":"\u003cp\u003eThe intermediary bank street address, second line.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankCity":{"name":"intermediaryBankCity","abstract":"\u003cp\u003eThe intermediary bank city.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankCountry":{"name":"intermediaryBankCountry","abstract":"\u003cp\u003eThe intermediary bank country.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankId":{"name":"intermediaryBankId","abstract":"\u003cp\u003eThe intermediary bank\u0026rsquo;s 11-character SWIFT code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankName":{"name":"intermediaryBankName","abstract":"\u003cp\u003eThe intermediary bank name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankPostalCode":{"name":"intermediaryBankPostalCode","abstract":"\u003cp\u003eThe intermediary bank postal code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)intermediaryBankStateProvince":{"name":"intermediaryBankStateProvince","abstract":"\u003cp\u003eThe intermediary bank state, province or region.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)lastName":{"name":"lastName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s last name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)middleName":{"name":"middleName","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s middle name.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)mobileNumber":{"name":"mobileNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s cell phone number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)passportId":{"name":"passportId","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s passport number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)phoneNumber":{"name":"phoneNumber","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s phone number.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)postalCode":{"name":"postalCode","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s postal code.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)stateProvince":{"name":"stateProvince","abstract":"\u003cp\u003eThe bank account holder\u0026rsquo;s state, province or region.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount.html#/c:@M@HyperwalletSDK@objc(cs)HyperwalletBankAccount(py)wireInstructions":{"name":"wireInstructions","abstract":"\u003cp\u003eThe wire transfer instructions\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletBankAccount/Builder.html":{"name":"Builder","abstract":"\u003cp\u003eA helper class to build the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e instance.\u003c/p\u003e","parent_name":"HyperwalletBankAccount"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC06clientC2IdSSSgvp":{"name":"clientTransferId","abstract":"\u003cp\u003eA value that identifies the client transfer id.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC16destinationTokenSSSgvp":{"name":"destinationToken","abstract":"\u003cp\u003eA value that identifies the destination token.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletTransferQueryParam.html#/s:14HyperwalletSDK0A18TransferQueryParamC11sourceTokenSSSgvp":{"name":"sourceToken","abstract":"\u003cp\u003eA value that identifies the source token.\u003c/p\u003e","parent_name":"HyperwalletTransferQueryParam"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO18ascendantCreatedOnyA2EmF":{"name":"ascendantCreatedOn","abstract":"\u003cp\u003eSort the result by ascendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO13ascendantTypeyA2EmF":{"name":"ascendantType","abstract":"\u003cp\u003eSort the result by ascendant type\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO19descendantCreatedOnyA2EmF":{"name":"descendantCreatedOn","abstract":"\u003cp\u003eSort the result by descendant created on\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC0D8SortableO14descendantTypeyA2EmF":{"name":"descendantType","abstract":"\u003cp\u003eSort the result by descendant type\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletReceiptQueryParam.html#/s:14HyperwalletSDK0A17ReceiptQueryParamC8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eA value that identifies the user receipts currency.\u003c/p\u003e","parent_name":"HyperwalletReceiptQueryParam"},"Classes/HyperwalletReceiptQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the field\u0026rsquo;s sortable\u003c/p\u003e","parent_name":"HyperwalletReceiptQueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC12createdAfter10Foundation4DateVSgvp":{"name":"createdAfter","abstract":"\u003cp\u003eReturns user receipts created after this datetime.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC13createdBefore10Foundation4DateVSgvp":{"name":"createdBefore","abstract":"\u003cp\u003eReturns user receipts created before this datetime.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC5limitSiSgvp":{"name":"limit","abstract":"\u003cp\u003eThe maximum number of records that will be returned per page\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC6offsetSiSgvp":{"name":"offset","abstract":"\u003cp\u003eThe number of records to skip. If no filters are applied, records will be skipped from the beginning","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamC6sortBySSSgvp":{"name":"sortBy","abstract":"\u003cp\u003eThe user receipts attribute to sort the result set by.\u003c/p\u003e","parent_name":"QueryParam"},"Classes/QueryParam.html#/s:14HyperwalletSDK10QueryParamCACycfc":{"name":"init()","abstract":"\u003cp\u003eCreates a new instance of \u003ccode\u003eQueryParam\u003c/code\u003e]\u003c/p\u003e","parent_name":"QueryParam"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A28PrepaidCardBalanceQueryParamC0F8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletPrepaidCardBalanceQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the sortable fields\u003c/p\u003e","parent_name":"HyperwalletPrepaidCardBalanceQueryParam"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO15ascendantAmountyA2EmF":{"name":"ascendantAmount","abstract":"\u003cp\u003eSort the result by ascendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO17ascendantCurrencyyA2EmF":{"name":"ascendantCurrency","abstract":"\u003cp\u003eSort the result by ascendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO16descendantAmountyA2EmF":{"name":"descendantAmount","abstract":"\u003cp\u003eSort the result by descendant amount\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html#/s:14HyperwalletSDK0A17BalanceQueryParamC0D8SortableO18descendantCurrencyyA2EmF":{"name":"descendantCurrency","abstract":"\u003cp\u003eSort the result by descendant currency\u003c/p\u003e","parent_name":"QuerySortable"},"Classes/HyperwalletBalanceQueryParam.html#/s:14HyperwalletSDK0A17BalanceQueryParamC8currencySSSgvp":{"name":"currency","abstract":"\u003cp\u003eA value that identifies the currency of balance\u003c/p\u003e","parent_name":"HyperwalletBalanceQueryParam"},"Classes/HyperwalletBalanceQueryParam/QuerySortable.html":{"name":"QuerySortable","abstract":"\u003cp\u003eRepresentation of the sortable fields\u003c/p\u003e","parent_name":"HyperwalletBalanceQueryParam"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cpy)shared":{"name":"shared","abstract":"\u003cp\u003eReturns the previously initialized instance of the Hyperwallet Core SDK interface object\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cm)clearInstance":{"name":"clearInstance()","abstract":"\u003cp\u003eClears Hyperwallet instance.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/c:@M@HyperwalletSDK@objc(cs)Hyperwallet(cm)setup:":{"name":"setup(_:)","abstract":"\u003cp\u003eCreates a new instance of the Hyperwallet Core SDK interface object. If a previously created instance exists,","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16getConfiguration10completionyyAA0D0VSg_AA0A9ErrorTypeOSgtc_tF":{"name":"getConfiguration(completion:)","abstract":"\u003cp\u003eRetrieves a configuration if one exists - else using the authentication token from the provider,","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C7getUser10completionyyAA0aD0CSg_AA0A9ErrorTypeOSgtc_tF":{"name":"getUser(completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletUser.html\"\u003eHyperwalletUser\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17createBankAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createBankAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16createPaperCheck7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createPaperCheck(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14createBankCard7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createBankCard(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19createPayPalAccount7account10completionyAA0adeF0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createPayPalAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14createTransfer8transfer10completionyAA0aD0V_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createTransfer(transfer:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18createVenmoAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"createVenmoAccount(account:completion:)","abstract":"\u003cp\u003eCreates a \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C21deactivateBankAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateBankAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C20deactivatePaperCheck19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivatePaperCheck(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18deactivateBankCard19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateBankCard(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23deactivatePayPalAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivatePayPalAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C22deactivateVenmoAccount19transferMethodToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"deactivateVenmoAccount(transferMethodToken:notes:completion:)","abstract":"\u003cp\u003eDeactivates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified. The","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16scheduleTransfer13transferToken5notes10completionySS_SSSgyAA0A16StatusTransitionVSg_AA0A9ErrorTypeOSgtctF":{"name":"scheduleTransfer(transferToken:notes:completion:)","abstract":"\u003cp\u003eSchedules the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14getBankAccount19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getBankAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13getPaperCheck19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPaperCheck(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C11getBankCard19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getBankCard(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16getPayPalAccount19transferMethodToken10completionySS_yAA0adeF0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPayPalAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14getPrepaidCard19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getPrepaidCard(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C11getTransfer13transferToken10completionySS_yAA0aD0VSg_AA0A9ErrorTypeOSgtctF":{"name":"getTransfer(transferToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletTransfer.html\"\u003eHyperwalletTransfer\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C15getVenmoAccount19transferMethodToken10completionySS_yAA0adE0CSg_AA0A9ErrorTypeOSgtctF":{"name":"getVenmoAccount(transferMethodToken:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e linked to the transfer method token specified, or nil if none exists.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listBankAccounts10queryParam10completionyAA0ad12AccountQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listBankAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003es for the User associated with the authentication token","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C15listPaperChecks10queryParam10completionyAA0ad10CheckQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPaperChecks(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003es for the User associated with the authentication token","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13listBankCards10queryParam10completionyAA0ad9CardQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listBankCards(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18listPayPalAccounts10queryParam10completionyAA0ade12AccountQueryH0CSg_yAA0A8PageListVyAA0adeJ0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPayPalAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19listTransferMethods10queryParam10completionyAA0ad11MethodQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listTransferMethods(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletTransferMethod.html\"\u003eHyperwalletTransferMethod\u003c/a\u003e\u003c/code\u003e (Bank Account, Bank Card, PayPay Account, Prepaid Card, Paper Checks)","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listPrepaidCards10queryParam10completionyAA0ad9CardQueryG0CSg_yAA0A8PageListVyAA0adI0CGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCards(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPrepaidCard.html\"\u003eHyperwalletPrepaidCard\u003c/a\u003e\u003c/code\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17listVenmoAccounts10queryParam10completionyAA0ad5QueryG0CSg_yAA0A8PageListVyAA0aD7AccountCGSg_AA0A9ErrorTypeOSgtctF":{"name":"listVenmoAccounts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listUserReceipts10queryParam10completionyAA0a12ReceiptQueryG0CSg_yAA0A8PageListVyAA0aI0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listUserReceipts(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of receipts for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23listPrepaidCardReceipts07prepaidE5Token10queryParam10completionySS_AA0a12ReceiptQueryJ0CSgyAA0A8PageListVyAA0aL0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCardReceipts(prepaidCardToken:queryParam:completion:)","abstract":"\u003cp\u003eThe filtering of \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbStructs/HyperwalletReceipt.html\"\u003eHyperwalletReceipt\u003c/a\u003e\u003c/code\u003e will be based on the criteria specified within the","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C13listTransfers10queryParam10completionyAA0a13TransferQueryF0CSg_yAA0A8PageListVyAA0aH0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listTransfers(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of transfers for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C41retrieveTransferMethodConfigurationFields7request10completionyAA0adeF10FieldQueryV_yAA0adefJ0_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodConfigurationFields(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method configuration field set for the User that is associated with the authentication","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C47retrieveTransferMethodUpdateConfigurationFields7request10completionyAA0adefG10FieldQueryV_yAA0adefgK0_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodUpdateConfigurationFields(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method update configuration fields set for the User that is associated with","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C39retrieveTransferMethodConfigurationKeys7request10completionyAA0adefG5QueryV_yAA0adeF3Key_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodConfigurationKeys(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method configuration key set for the User that is associated","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C49retrieveTransferMethodTypesFeesAndProcessingTimes7request10completionyAA0adefghiJ5QueryV_yAA0adE16ConfigurationKey_pSg_AA0A9ErrorTypeOSgtctF":{"name":"retrieveTransferMethodTypesFeesAndProcessingTimes(request:completion:)","abstract":"\u003cp\u003eReturns the transfer method types, processing times, and fees for the User that is associated","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C17updateBankAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateBankAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankAccount.html\"\u003eHyperwalletBankAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16updatePaperCheck7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updatePaperCheck(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPaperCheck.html\"\u003eHyperwalletPaperCheck\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C14updateBankCard7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateBankCard(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletBankCard.html\"\u003eHyperwalletBankCard\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C19updatePayPalAccount7account10completionyAA0adeF0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updatePayPalAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletPayPalAccount.html\"\u003eHyperwalletPayPalAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C18updateVenmoAccount7account10completionyAA0adE0C_yAHSg_AA0A9ErrorTypeOSgtctF":{"name":"updateVenmoAccount(account:completion:)","abstract":"\u003cp\u003eUpdates the \u003ccode\u003e\u003ca href=\"36f8f5912051ae747ef441d6511ca4cbClasses/HyperwalletVenmoAccount.html\"\u003eHyperwalletVenmoAccount\u003c/a\u003e\u003c/code\u003e for the User associated with the authentication token returned from","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C16listUserBalances10queryParam10completionyAA0a12BalanceQueryG0CSg_yAA0A8PageListVyAA0aI0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listUserBalances(queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of balances for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html#/s:14HyperwalletSDK0A0C23listPrepaidCardBalances07prepaidE5Token10queryParam10completionySS_AA0ade12BalanceQueryJ0CSgyAA0A8PageListVyAA0aL0VGSg_AA0A9ErrorTypeOSgtctF":{"name":"listPrepaidCardBalances(prepaidCardToken:queryParam:completion:)","abstract":"\u003cp\u003eReturns the list of prepaid card balances for the User associated with the authentication token.\u003c/p\u003e","parent_name":"Hyperwallet"},"Classes/Hyperwallet.html":{"name":"Hyperwallet","abstract":"\u003cp\u003eThe \u003ccode\u003eHyperwallet\u003c/code\u003e class is an iOS specific implementation of the"},"Classes/HyperwalletBalanceQueryParam.html":{"name":"HyperwalletBalanceQueryParam","abstract":"\u003cp\u003eRepresentation of the balance QueryParam fields.\u003c/p\u003e"},"Classes/HyperwalletPrepaidCardBalanceQueryParam.html":{"name":"HyperwalletPrepaidCardBalanceQueryParam","abstract":"\u003cp\u003eRepresentation of the prepaid card balance QueryParam fields.\u003c/p\u003e"},"Classes/QueryParam.html":{"name":"QueryParam","abstract":"\u003cp\u003eRepresentation of the common query parameters.\u003c/p\u003e"},"Classes/HyperwalletReceiptQueryParam.html":{"name":"HyperwalletReceiptQueryParam","abstract":"\u003cp\u003eRepresentation of the user receipts QueryParam fields.\u003c/p\u003e"},"Classes/HyperwalletTransferQueryParam.html":{"name":"HyperwalletTransferQueryParam","abstract":"\u003cp\u003eRepresentation of the user transfers QueryParams fields.\u003c/p\u003e"},"Classes/HyperwalletBankAccount.html":{"name":"HyperwalletBankAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s bank account\u003c/p\u003e"},"Classes/HyperwalletBankAccountQueryParam.html":{"name":"HyperwalletBankAccountQueryParam","abstract":"\u003cp\u003eRepresentation of the bank account query parameters.\u003c/p\u003e"},"Classes/HyperwalletBankCard.html":{"name":"HyperwalletBankCard","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s bank card\u003c/p\u003e"},"Classes/HyperwalletBankCardQueryParam.html":{"name":"HyperwalletBankCardQueryParam","abstract":"\u003cp\u003eRepresentation of the bank card query parameters.\u003c/p\u003e"},"Classes/HyperwalletPaperCheck.html":{"name":"HyperwalletPaperCheck","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s paper check\u003c/p\u003e"},"Classes/HyperwalletPaperCheckQueryParam.html":{"name":"HyperwalletPaperCheckQueryParam","abstract":"\u003cp\u003eRepresentation of the paper check query parameters.\u003c/p\u003e"},"Classes/HyperwalletPayPalAccount.html":{"name":"HyperwalletPayPalAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s PayPal account\u003c/p\u003e"},"Classes/HyperwalletPayPalAccountQueryParam.html":{"name":"HyperwalletPayPalAccountQueryParam","abstract":"\u003cp\u003eRepresentation of the PayPal account query parameters.\u003c/p\u003e"},"Classes/HyperwalletPrepaidCard.html":{"name":"HyperwalletPrepaidCard","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s Prepaid card account\u003c/p\u003e"},"Classes/HyperwalletPrepaidCardQueryParam.html":{"name":"HyperwalletPrepaidCardQueryParam","abstract":"\u003cp\u003eRepresentation of the prepaid card query parameters.\u003c/p\u003e"},"Classes/HyperwalletTransferMethod.html":{"name":"HyperwalletTransferMethod","abstract":"\u003cp\u003eRepresentation of the transfer method (bank account, bank card, PayPal account, prepaid card, paper check).\u003c/p\u003e"},"Classes/HyperwalletTransferMethodQueryParam.html":{"name":"HyperwalletTransferMethodQueryParam","abstract":"\u003cp\u003eRepresentation of the common transfer method\u0026rsquo;s query parameters.\u003c/p\u003e"},"Classes/HyperwalletVenmoAccount.html":{"name":"HyperwalletVenmoAccount","abstract":"\u003cp\u003eRepresentation of the user\u0026rsquo;s Venmo account\u003c/p\u003e"},"Classes/HyperwalletVenmoQueryParam.html":{"name":"HyperwalletVenmoQueryParam","abstract":"\u003cp\u003eRepresentation of the common Venmo\u0026rsquo;s query parameters.\u003c/p\u003e"},"Classes/HyperwalletUser.html":{"name":"HyperwalletUser","abstract":"\u003cp\u003eRepresentation of the Hyperwallet\u0026rsquo;s user.\u003c/p\u003e"},"changelog.html":{"name":"CHANGELOG"},"readme.html":{"name":"README"},"Guides.html":{"name":"Guides","abstract":"\u003cp\u003eThe following guides are available globally.\u003c/p\u003e"},"Classes.html":{"name":"Classes","abstract":"\u003cp\u003eThe following classes are available globally.\u003c/p\u003e"},"Enums.html":{"name":"Enumerations","abstract":"\u003cp\u003eThe following enumerations are available globally.\u003c/p\u003e"},"Extensions.html":{"name":"Extensions","abstract":"\u003cp\u003eThe following extensions are available globally.\u003c/p\u003e"},"Protocols.html":{"name":"Protocols","abstract":"\u003cp\u003eThe following protocols are available globally.\u003c/p\u003e"},"Structs.html":{"name":"Structures","abstract":"\u003cp\u003eThe following structures are available globally.\u003c/p\u003e"}}
\ No newline at end of file
diff --git a/undocumented.json b/undocumented.json
new file mode 100644
index 00000000..d75e12b4
--- /dev/null
+++ b/undocumented.json
@@ -0,0 +1,12 @@
+{
+ "warnings": [
+ {
+ "file": "/Users/runner/work/hyperwallet-ios-sdk/hyperwallet-ios-sdk/Sources/Model/GraphQL/Query/HyperwalletTransferMethodConfigurationQueries.swift",
+ "line": 242,
+ "symbol": "HyperwalletTransferMethodTypesFeesAndProcessingTimesQuery.init(country:currency:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ }
+ ],
+ "source_directory": "/Users/runner/work/hyperwallet-ios-sdk/hyperwallet-ios-sdk/Sources"
+}
\ No newline at end of file