@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
38 lines (37 loc) • 1.06 kB
TypeScript
import { Balance } from "./balance";
import { GrantCounterparty } from "./grantCounterparty";
import { Status } from "./status";
export declare class Grant {
"balances": Balance;
"counterparty"?: GrantCounterparty | null;
/**
* The unique identifier of the grant account that tracks this grant.
*/
"grantAccountId": string;
/**
* The unique identifier of the selected offer. Adyen uses the details of the selected offer to create a grant.
*/
"grantOfferId": string;
/**
* The unique identifier of the grant reference.
*/
"id": string;
"status": Status;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}