umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
65 lines (64 loc) • 2.12 kB
TypeScript
/**
* Umbraco Management API
* This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
*
* The version of the OpenAPI document: Latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { CreateDataTypeRequestModelValuesInner } from './CreateDataTypeRequestModelValuesInner';
import type { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface CreateDataTypeRequestModel
*/
export interface CreateDataTypeRequestModel {
/**
*
* @type {string}
* @memberof CreateDataTypeRequestModel
*/
name: string;
/**
*
* @type {string}
* @memberof CreateDataTypeRequestModel
*/
editorAlias: string;
/**
*
* @type {string}
* @memberof CreateDataTypeRequestModel
*/
editorUiAlias: string;
/**
*
* @type {Array<CreateDataTypeRequestModelValuesInner>}
* @memberof CreateDataTypeRequestModel
*/
values: Array<CreateDataTypeRequestModelValuesInner>;
/**
*
* @type {string}
* @memberof CreateDataTypeRequestModel
*/
id?: string | null;
/**
*
* @type {ReferenceByIdModel}
* @memberof CreateDataTypeRequestModel
*/
parent?: ReferenceByIdModel | null;
}
/**
* Check if a given object implements the CreateDataTypeRequestModel interface.
*/
export declare function instanceOfCreateDataTypeRequestModel(value: object): value is CreateDataTypeRequestModel;
export declare function CreateDataTypeRequestModelFromJSON(json: any): CreateDataTypeRequestModel;
export declare function CreateDataTypeRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDataTypeRequestModel;
export declare function CreateDataTypeRequestModelToJSON(json: any): CreateDataTypeRequestModel;
export declare function CreateDataTypeRequestModelToJSONTyped(value?: CreateDataTypeRequestModel | null, ignoreDiscriminator?: boolean): any;