Provision Virtual Card Input
data class ProvisionVirtualCardInput(val clientRefId: String = UUID.randomUUID().toString(), val ownershipProofs: List<String>, val fundingSourceId: String, val cardHolder: String, val alias: String? = null, val metadata: JsonValue<Any>? = null, val billingAddress: BillingAddress? = null, val currency: String)
Input object containing the information required to provision a virtual card.
Constructors
Link copied to clipboard
constructor(clientRefId: String = UUID.randomUUID().toString(), ownershipProofs: List<String>, fundingSourceId: String, cardHolder: String, alias: String? = null, metadata: JsonValue<Any>? = null, addressLine1: String, addressLine2: String? = null, city: String, state: String, postalCode: String, country: String, currency: String)
Properties
Link copied to clipboard
BillingAddress associated with the virtual card. If not supplied, the default billing address will be used.
Link copied to clipboard
String The name to appear on the virtual card.
Link copied to clipboard
String A reference identifier generated by the caller.
Link copied to clipboard
String Identifier of the associated funding source used to fund the provisioned virtual card.
Link copied to clipboard
List