umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
46 lines (45 loc) • 1.68 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 { ReferenceByIdModel } from './ReferenceByIdModel';
/**
*
* @export
* @interface MediaTypeReferenceResponseModel
*/
export interface MediaTypeReferenceResponseModel {
/**
*
* @type {string}
* @memberof MediaTypeReferenceResponseModel
*/
id: string;
/**
*
* @type {string}
* @memberof MediaTypeReferenceResponseModel
*/
icon: string;
/**
*
* @type {ReferenceByIdModel}
* @memberof MediaTypeReferenceResponseModel
*/
collection?: ReferenceByIdModel | null;
}
/**
* Check if a given object implements the MediaTypeReferenceResponseModel interface.
*/
export declare function instanceOfMediaTypeReferenceResponseModel(value: object): value is MediaTypeReferenceResponseModel;
export declare function MediaTypeReferenceResponseModelFromJSON(json: any): MediaTypeReferenceResponseModel;
export declare function MediaTypeReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaTypeReferenceResponseModel;
export declare function MediaTypeReferenceResponseModelToJSON(json: any): MediaTypeReferenceResponseModel;
export declare function MediaTypeReferenceResponseModelToJSONTyped(value?: MediaTypeReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;