/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.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 * @interface BaseProductAllOf1 */ export interface BaseProductAllOf1 { /** * Only available in Growth and above plans How often a customer is billed for access to a service or product * @type {string} */ 'billing_frequency'?: BaseProductAllOf1BillingFrequencyConst; } export declare const BaseProductAllOf1BillingFrequencyConst: { readonly one_time: "one-time"; readonly annually: "annually"; readonly semi_annually: "semi-annually"; readonly quarterly: "quarterly"; readonly monthly: "monthly"; readonly weekly: "weekly"; }; export type BaseProductAllOf1BillingFrequencyConst = typeof BaseProductAllOf1BillingFrequencyConst[keyof typeof BaseProductAllOf1BillingFrequencyConst];