/** * 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 UserFeatures */ export interface UserFeatures { /** * Names of the features the calling user is entitled to, sorted alphabetically. * @type {Array} * @memberof UserFeatures */ features: Array; } /** * Check if a given object implements the UserFeatures interface. */ export declare function instanceOfUserFeatures(value: object): value is UserFeatures; export declare function UserFeaturesFromJSON(json: any): UserFeatures; export declare function UserFeaturesFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserFeatures; export declare function UserFeaturesToJSON(json: any): UserFeatures; export declare function UserFeaturesToJSONTyped(value?: UserFeatures | null, ignoreDiscriminator?: boolean): any;