/** * 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 UpdateProductRequestAllOf1 */ export interface UpdateProductRequestAllOf1 { /** * Only available in Growth and above plans How often a customer is billed for access to a service or product * @type {string} */ 'billing_frequency'?: UpdateProductRequestAllOf1BillingFrequencyConst; } export declare const UpdateProductRequestAllOf1BillingFrequencyConst: { readonly one_time: "one-time"; readonly annually: "annually"; readonly semi_annually: "semi-annually"; readonly quarterly: "quarterly"; readonly monthly: "monthly"; readonly weekly: "weekly"; }; export type UpdateProductRequestAllOf1BillingFrequencyConst = typeof UpdateProductRequestAllOf1BillingFrequencyConst[keyof typeof UpdateProductRequestAllOf1BillingFrequencyConst];