UNPKG

umbraco-management-api-client

Version:

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

51 lines (50 loc) 1.59 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. */ /** * * @export * @interface AllowedDocumentTypeModel */ export interface AllowedDocumentTypeModel { /** * * @type {string} * @memberof AllowedDocumentTypeModel */ id: string; /** * * @type {string} * @memberof AllowedDocumentTypeModel */ name: string; /** * * @type {string} * @memberof AllowedDocumentTypeModel */ description?: string | null; /** * * @type {string} * @memberof AllowedDocumentTypeModel */ icon?: string | null; } /** * Check if a given object implements the AllowedDocumentTypeModel interface. */ export declare function instanceOfAllowedDocumentTypeModel(value: object): value is AllowedDocumentTypeModel; export declare function AllowedDocumentTypeModelFromJSON(json: any): AllowedDocumentTypeModel; export declare function AllowedDocumentTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AllowedDocumentTypeModel; export declare function AllowedDocumentTypeModelToJSON(json: any): AllowedDocumentTypeModel; export declare function AllowedDocumentTypeModelToJSONTyped(value?: AllowedDocumentTypeModel | null, ignoreDiscriminator?: boolean): any;