UNPKG

umbraco-management-api-client

Version:

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

51 lines (50 loc) 1.44 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 MediaValueModel */ export interface MediaValueModel { /** * * @type {string} * @memberof MediaValueModel */ culture?: string | null; /** * * @type {string} * @memberof MediaValueModel */ segment?: string | null; /** * * @type {string} * @memberof MediaValueModel */ alias: string; /** * * @type {any} * @memberof MediaValueModel */ value?: any | null; } /** * Check if a given object implements the MediaValueModel interface. */ export declare function instanceOfMediaValueModel(value: object): value is MediaValueModel; export declare function MediaValueModelFromJSON(json: any): MediaValueModel; export declare function MediaValueModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaValueModel; export declare function MediaValueModelToJSON(json: any): MediaValueModel; export declare function MediaValueModelToJSONTyped(value?: MediaValueModel | null, ignoreDiscriminator?: boolean): any;