UNPKG

umbraco-management-api-client

Version:

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

51 lines (50 loc) 1.49 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 DocumentValueModel */ export interface DocumentValueModel { /** * * @type {string} * @memberof DocumentValueModel */ culture?: string | null; /** * * @type {string} * @memberof DocumentValueModel */ segment?: string | null; /** * * @type {string} * @memberof DocumentValueModel */ alias: string; /** * * @type {any} * @memberof DocumentValueModel */ value?: any | null; } /** * Check if a given object implements the DocumentValueModel interface. */ export declare function instanceOfDocumentValueModel(value: object): value is DocumentValueModel; export declare function DocumentValueModelFromJSON(json: any): DocumentValueModel; export declare function DocumentValueModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentValueModel; export declare function DocumentValueModelToJSON(json: any): DocumentValueModel; export declare function DocumentValueModelToJSONTyped(value?: DocumentValueModel | null, ignoreDiscriminator?: boolean): any;