/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 ResourceAttributeRead */ export interface ResourceAttributeRead { /** * * @type {string} * @memberof ResourceAttributeRead */ id?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ key?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ type?: ResourceAttributeReadTypeEnum; /** * * @type {string} * @memberof ResourceAttributeRead */ description?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ resourceId?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ resource?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ organizationId?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ projectId?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ environmentId?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ createdAt?: string; /** * * @type {string} * @memberof ResourceAttributeRead */ updatedAt?: string; } /** * @export */ export declare const ResourceAttributeReadTypeEnum: { readonly Bool: "bool"; readonly Number: "number"; readonly String: "string"; readonly Time: "time"; readonly Array: "array"; readonly Json: "json"; readonly Object: "object"; readonly ObjectArray: "object_array"; }; export type ResourceAttributeReadTypeEnum = typeof ResourceAttributeReadTypeEnum[keyof typeof ResourceAttributeReadTypeEnum]; /** * Check if a given object implements the ResourceAttributeRead interface. */ export declare function instanceOfResourceAttributeRead(value: object): value is ResourceAttributeRead; export declare function ResourceAttributeReadFromJSON(json: any): ResourceAttributeRead; export declare function ResourceAttributeReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceAttributeRead; export declare function ResourceAttributeReadToJSON(json: any): ResourceAttributeRead; export declare function ResourceAttributeReadToJSONTyped(value?: ResourceAttributeRead | null, ignoreDiscriminator?: boolean): any;