/** * Sonatype Guide API * REST API into [Sonatype Guide](https://guide.sonatype.com). * * The version of the OpenAPI document: 202607 * * * 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 OssiMonthlyUsage */ export interface OssiMonthlyUsage { /** * * @type {number} * @memberof OssiMonthlyUsage */ estimatedCredits?: number; /** * * @type {string} * @memberof OssiMonthlyUsage */ month?: string; /** * * @type {number} * @memberof OssiMonthlyUsage */ totalComponents?: number; } /** * Check if a given object implements the OssiMonthlyUsage interface. */ export declare function instanceOfOssiMonthlyUsage(value: object): value is OssiMonthlyUsage; export declare function OssiMonthlyUsageFromJSON(json: any): OssiMonthlyUsage; export declare function OssiMonthlyUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): OssiMonthlyUsage; export declare function OssiMonthlyUsageToJSON(json: any): OssiMonthlyUsage; export declare function OssiMonthlyUsageToJSONTyped(value?: OssiMonthlyUsage | null, ignoreDiscriminator?: boolean): any;