@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
31 lines (30 loc) • 1.08 kB
TypeScript
export declare class CalculateTermsOfServiceStatusResponse {
/**
* The type of Terms of Service that the legal entity needs to accept. If empty, no Terms of Service needs to be accepted.
*/
'termsOfServiceTypes'?: Array<CalculateTermsOfServiceStatusResponse.TermsOfServiceTypesEnum>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace CalculateTermsOfServiceStatusResponse {
enum TermsOfServiceTypesEnum {
AdyenAccount = "adyenAccount",
AdyenCapital = "adyenCapital",
AdyenCard = "adyenCard",
AdyenChargeCard = "adyenChargeCard",
AdyenForPlatformsAdvanced = "adyenForPlatformsAdvanced",
AdyenForPlatformsManage = "adyenForPlatformsManage",
AdyenFranchisee = "adyenFranchisee",
AdyenIssuing = "adyenIssuing",
AdyenPccr = "adyenPccr"
}
}