/** * 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 ResourceAttributeCreate */ export interface ResourceAttributeCreate { /** * * @type {string} * @memberof ResourceAttributeCreate */ key?: string; /** * * @type {string} * @memberof ResourceAttributeCreate */ type?: ResourceAttributeCreateTypeEnum; /** * * @type {string} * @memberof ResourceAttributeCreate */ description?: string; } /** * @export */ export declare const ResourceAttributeCreateTypeEnum: { 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 ResourceAttributeCreateTypeEnum = typeof ResourceAttributeCreateTypeEnum[keyof typeof ResourceAttributeCreateTypeEnum]; /** * Check if a given object implements the ResourceAttributeCreate interface. */ export declare function instanceOfResourceAttributeCreate(value: object): value is ResourceAttributeCreate; export declare function ResourceAttributeCreateFromJSON(json: any): ResourceAttributeCreate; export declare function ResourceAttributeCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceAttributeCreate; export declare function ResourceAttributeCreateToJSON(json: any): ResourceAttributeCreate; export declare function ResourceAttributeCreateToJSONTyped(value?: ResourceAttributeCreate | null, ignoreDiscriminator?: boolean): any;