/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const BillingCycle: { readonly Week: "week"; readonly Month: "month"; readonly Year: "year"; readonly Year3: "year_3"; }; export type BillingCycle = typeof BillingCycle[keyof typeof BillingCycle]; export declare function instanceOfBillingCycle(value: any): boolean; export declare function BillingCycleFromJSON(json: any): BillingCycle; export declare function BillingCycleFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingCycle; export declare function BillingCycleToJSON(value?: BillingCycle | null): any; export declare function BillingCycleToJSONTyped(value: any, ignoreDiscriminator: boolean): BillingCycle;