UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.08 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * 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 RequestCountAllocation */ export interface RequestCountAllocation { /** * * @type {number} * @memberof RequestCountAllocation */ unify?: number; /** * * @type {number} * @memberof RequestCountAllocation */ proxy?: number; /** * * @type {number} * @memberof RequestCountAllocation */ vault?: number; } export declare function RequestCountAllocationFromJSON(json: any): RequestCountAllocation; export declare function RequestCountAllocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestCountAllocation; export declare function RequestCountAllocationToJSON(value?: RequestCountAllocation | null): any;