UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 992 B
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface EnumOptions */ export interface EnumOptions { /** * * @type {Array<string>} * @memberof EnumOptions */ acceptedValues: Array<string>; } /** * Check if a given object implements the EnumOptions interface. */ export declare function instanceOfEnumOptions(value: object): value is EnumOptions; export declare function EnumOptionsFromJSON(json: any): EnumOptions; export declare function EnumOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnumOptions; export declare function EnumOptionsToJSON(json: any): EnumOptions; export declare function EnumOptionsToJSONTyped(value?: EnumOptions | null, ignoreDiscriminator?: boolean): any;