projects/angular-client-sdk/src/lib/interfaces/pay-with-card-inputs.interface.ts
Properties |
|
chainName |
chainName:
|
Type : string
|
checkoutId |
checkoutId:
|
Type : string
|
emailAddress |
emailAddress:
|
Type : string
|
metadata |
metadata:
|
Type : Record<string | any>
|
Optional |
options |
options:
|
Type : PaperSDKPayWithCardStyleOptions
|
Optional |
quantity |
quantity:
|
Type : number
|
Optional |
recipientWalletAddress |
recipientWalletAddress:
|
Type : string
|
import { PaperSDKPayWithCardStyleOptions } from './style-options.interface';
export interface PaperPayWithCardInputs {
checkoutId: string;
recipientWalletAddress: string;
emailAddress: string;
chainName: string;
quantity?: number;
metadata?: Record<string, any>;
options?: PaperSDKPayWithCardStyleOptions;
}