/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - DIGEST_FREQUENCY_UNSPECIFIED: Not specified; defaults to monthly * - DIGEST_FREQUENCY_NONE: No digest emails * - DIGEST_FREQUENCY_WEEKLY: Weekly digest every Monday * - DIGEST_FREQUENCY_MONTHLY: Monthly digest on the 1st of each month * @export */ export declare const DigestFrequency: { readonly DigestFrequencyUnspecified: "DIGEST_FREQUENCY_UNSPECIFIED"; readonly DigestFrequencyNone: "DIGEST_FREQUENCY_NONE"; readonly DigestFrequencyWeekly: "DIGEST_FREQUENCY_WEEKLY"; readonly DigestFrequencyMonthly: "DIGEST_FREQUENCY_MONTHLY"; }; export type DigestFrequency = typeof DigestFrequency[keyof typeof DigestFrequency]; export declare function instanceOfDigestFrequency(value: any): boolean; export declare function DigestFrequencyFromJSON(json: any): DigestFrequency; export declare function DigestFrequencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): DigestFrequency; export declare function DigestFrequencyToJSON(value?: DigestFrequency | null): any; export declare function DigestFrequencyToJSONTyped(value: any, ignoreDiscriminator: boolean): DigestFrequency;