UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

46 lines (45 loc) 1.76 kB
/** * 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 { DataTypeChangeModeModel } from './DataTypeChangeModeModel'; /** * * @export * @interface DatatypeConfigurationResponseModel */ export interface DatatypeConfigurationResponseModel { /** * * @type {DataTypeChangeModeModel} * @memberof DatatypeConfigurationResponseModel */ canBeChanged: DataTypeChangeModeModel; /** * * @type {string} * @memberof DatatypeConfigurationResponseModel */ documentListViewId: string; /** * * @type {string} * @memberof DatatypeConfigurationResponseModel */ mediaListViewId: string; } /** * Check if a given object implements the DatatypeConfigurationResponseModel interface. */ export declare function instanceOfDatatypeConfigurationResponseModel(value: object): value is DatatypeConfigurationResponseModel; export declare function DatatypeConfigurationResponseModelFromJSON(json: any): DatatypeConfigurationResponseModel; export declare function DatatypeConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DatatypeConfigurationResponseModel; export declare function DatatypeConfigurationResponseModelToJSON(json: any): DatatypeConfigurationResponseModel; export declare function DatatypeConfigurationResponseModelToJSONTyped(value?: DatatypeConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;