umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 loc) • 1.26 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 MediaUrlInfoModel
*/
export interface MediaUrlInfoModel {
/**
*
* @type {string}
* @memberof MediaUrlInfoModel
*/
culture: string | null;
/**
*
* @type {string}
* @memberof MediaUrlInfoModel
*/
url: string;
}
/**
* Check if a given object implements the MediaUrlInfoModel interface.
*/
export declare function instanceOfMediaUrlInfoModel(value: object): value is MediaUrlInfoModel;
export declare function MediaUrlInfoModelFromJSON(json: any): MediaUrlInfoModel;
export declare function MediaUrlInfoModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaUrlInfoModel;
export declare function MediaUrlInfoModelToJSON(json: any): MediaUrlInfoModel;
export declare function MediaUrlInfoModelToJSONTyped(value?: MediaUrlInfoModel | null, ignoreDiscriminator?: boolean): any;