umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.74 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.
*/
/**
*
* @export
* @interface MediaTypeCollectionReferenceResponseModel
*/
export interface MediaTypeCollectionReferenceResponseModel {
/**
*
* @type {string}
* @memberof MediaTypeCollectionReferenceResponseModel
*/
id: string;
/**
*
* @type {string}
* @memberof MediaTypeCollectionReferenceResponseModel
*/
alias: string;
/**
*
* @type {string}
* @memberof MediaTypeCollectionReferenceResponseModel
*/
icon: string;
}
/**
* Check if a given object implements the MediaTypeCollectionReferenceResponseModel interface.
*/
export declare function instanceOfMediaTypeCollectionReferenceResponseModel(value: object): value is MediaTypeCollectionReferenceResponseModel;
export declare function MediaTypeCollectionReferenceResponseModelFromJSON(json: any): MediaTypeCollectionReferenceResponseModel;
export declare function MediaTypeCollectionReferenceResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaTypeCollectionReferenceResponseModel;
export declare function MediaTypeCollectionReferenceResponseModelToJSON(json: any): MediaTypeCollectionReferenceResponseModel;
export declare function MediaTypeCollectionReferenceResponseModelToJSONTyped(value?: MediaTypeCollectionReferenceResponseModel | null, ignoreDiscriminator?: boolean): any;