wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 734 B
TypeScript
import { SubscriptionUpdate } from "./SubscriptionUpdate";
declare class SubscriptionPending extends SubscriptionUpdate {
/**
* The merchant's reference used to identify the subscription.
*/
'reference'?: string;
/**
* The subscriber that the subscription belongs to.
*/
'subscriber'?: number;
/**
* The payment token that is used to charge the customer.
*/
'token'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionPending };