UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

34 lines (33 loc) 1.1 kB
export declare class UpdateCompanyApiCredentialRequest { /** * Indicates if the API credential is enabled. */ 'active'?: boolean; /** * The new list of [allowed origins](https://docs.adyen.com/development-resources/client-side-authentication#allowed-origins) for the 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 discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }