UNPKG

umbraco-management-api-client

Version:

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

57 lines (56 loc) 1.69 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 MediaValueResponseModel */ export interface MediaValueResponseModel { /** * * @type {string} * @memberof MediaValueResponseModel */ culture?: string | null; /** * * @type {string} * @memberof MediaValueResponseModel */ segment?: string | null; /** * * @type {string} * @memberof MediaValueResponseModel */ alias: string; /** * * @type {any} * @memberof MediaValueResponseModel */ value?: any | null; /** * * @type {string} * @memberof MediaValueResponseModel */ editorAlias: string; } /** * Check if a given object implements the MediaValueResponseModel interface. */ export declare function instanceOfMediaValueResponseModel(value: object): value is MediaValueResponseModel; export declare function MediaValueResponseModelFromJSON(json: any): MediaValueResponseModel; export declare function MediaValueResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaValueResponseModel; export declare function MediaValueResponseModelToJSON(json: any): MediaValueResponseModel; export declare function MediaValueResponseModelToJSONTyped(value?: MediaValueResponseModel | null, ignoreDiscriminator?: boolean): any;