@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 969 B
TypeScript
export declare class UpdateMerchantApiCredentialRequest {
/**
* 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>;
/**
* 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;
}[];
}