/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.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 FeatureEntity */ export interface FeatureEntity { /** * Unique identifier * @type {string} * @memberof FeatureEntity */ id: string; /** * Feature name * @type {string} * @memberof FeatureEntity */ name: string; /** * Feature description * @type {string} * @memberof FeatureEntity */ description?: string | null; /** * ID of the plan this feature belongs to * @type {string} * @memberof FeatureEntity */ planId: string; /** * Creation timestamp * @type {Date} * @memberof FeatureEntity */ createdAt: Date; /** * Last update timestamp * @type {Date} * @memberof FeatureEntity */ updatedAt: Date; } /** * Check if a given object implements the FeatureEntity interface. */ export declare function instanceOfFeatureEntity(value: object): value is FeatureEntity; export declare function FeatureEntityFromJSON(json: any): FeatureEntity; export declare function FeatureEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureEntity; export declare function FeatureEntityToJSON(json: any): FeatureEntity; export declare function FeatureEntityToJSONTyped(value?: FeatureEntity | null, ignoreDiscriminator?: boolean): any;