UNPKG

umbraco-management-api-client

Version:

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

57 lines (56 loc) 1.74 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 DocumentValueResponseModel */ export interface DocumentValueResponseModel { /** * * @type {string} * @memberof DocumentValueResponseModel */ culture?: string | null; /** * * @type {string} * @memberof DocumentValueResponseModel */ segment?: string | null; /** * * @type {string} * @memberof DocumentValueResponseModel */ alias: string; /** * * @type {any} * @memberof DocumentValueResponseModel */ value?: any | null; /** * * @type {string} * @memberof DocumentValueResponseModel */ editorAlias: string; } /** * Check if a given object implements the DocumentValueResponseModel interface. */ export declare function instanceOfDocumentValueResponseModel(value: object): value is DocumentValueResponseModel; export declare function DocumentValueResponseModelFromJSON(json: any): DocumentValueResponseModel; export declare function DocumentValueResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentValueResponseModel; export declare function DocumentValueResponseModelToJSON(json: any): DocumentValueResponseModel; export declare function DocumentValueResponseModelToJSONTyped(value?: DocumentValueResponseModel | null, ignoreDiscriminator?: boolean): any;