@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.18 kB
TypeScript
export declare class CreateCompanyApiCredentialRequest {
/**
* List of [allowed origins](https://docs.adyen.com/development-resources/client-side-authentication#allowed-origins) for the new API credential.
*/
"allowedOrigins"?: Array<string>;
/**
* List of merchant accounts that the API credential has access to.
*/
"associatedMerchantAccounts"?: Array<string>;
/**
* Description of the API credential.
*/
"description"?: string;
/**
* List of [roles](https://docs.adyen.com/development-resources/api-credentials#roles-1) for the API credential. Only roles assigned to \'ws@Company.<CompanyName>\' can be assigned to other API credentials.
*/
"roles"?: Array<string>;
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();
}