/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export * @interface GetAllPaymentMethods403Response */ export interface GetAllPaymentMethods403Response { /** * * @type {string} * @memberof GetAllPaymentMethods403Response */ errorCode?: GetAllPaymentMethods403ResponseErrorCodeEnum; /** * * @type {string} * @memberof GetAllPaymentMethods403Response */ message?: string; } /** * @export */ export declare const GetAllPaymentMethods403ResponseErrorCodeEnum: { readonly Unauthorized: "UNAUTHORIZED"; readonly ChannelNotActivated: "CHANNEL_NOT_ACTIVATED"; }; export type GetAllPaymentMethods403ResponseErrorCodeEnum = typeof GetAllPaymentMethods403ResponseErrorCodeEnum[keyof typeof GetAllPaymentMethods403ResponseErrorCodeEnum]; /** * Check if a given object implements the GetAllPaymentMethods403Response interface. */ export declare function instanceOfGetAllPaymentMethods403Response(value: object): boolean; export declare function GetAllPaymentMethods403ResponseFromJSON(json: any): GetAllPaymentMethods403Response; export declare function GetAllPaymentMethods403ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAllPaymentMethods403Response; export declare function GetAllPaymentMethods403ResponseToJSON(value?: GetAllPaymentMethods403Response | null): any;