UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.35 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 ObjectTypeResponseModel */ export interface ObjectTypeResponseModel { /** * * @type {string} * @memberof ObjectTypeResponseModel */ name?: string | null; /** * * @type {string} * @memberof ObjectTypeResponseModel */ id: string; } /** * Check if a given object implements the ObjectTypeResponseModel interface. */ export declare function instanceOfObjectTypeResponseModel(value: object): value is ObjectTypeResponseModel; export declare function ObjectTypeResponseModelFromJSON(json: any): ObjectTypeResponseModel; export declare function ObjectTypeResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ObjectTypeResponseModel; export declare function ObjectTypeResponseModelToJSON(json: any): ObjectTypeResponseModel; export declare function ObjectTypeResponseModelToJSONTyped(value?: ObjectTypeResponseModel | null, ignoreDiscriminator?: boolean): any;