/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * 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 TariffInfoClass */ export interface TariffInfoClass { /** * Display name shown to users * @type {string} * @memberof TariffInfoClass */ 'label': string; /** * Tariff variation description * @type {string} * @memberof TariffInfoClass */ 'description': string; /** * Starting premium amount for display * @type {number} * @memberof TariffInfoClass */ 'startingPremium': number; /** * Premium billing period, used for display * @type {string} * @memberof TariffInfoClass */ 'billingPeriod': TariffInfoClassBillingPeriodEnum; } export declare const TariffInfoClassBillingPeriodEnum: { readonly Monthly: "MONTHLY"; readonly Yearly: "YEARLY"; }; export type TariffInfoClassBillingPeriodEnum = typeof TariffInfoClassBillingPeriodEnum[keyof typeof TariffInfoClassBillingPeriodEnum];