UNPKG

umbraco-management-api-client

Version:

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

39 lines (38 loc) 1.31 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 DocumentUrlInfoModel */ export interface DocumentUrlInfoModel { /** * * @type {string} * @memberof DocumentUrlInfoModel */ culture: string | null; /** * * @type {string} * @memberof DocumentUrlInfoModel */ url: string; } /** * Check if a given object implements the DocumentUrlInfoModel interface. */ export declare function instanceOfDocumentUrlInfoModel(value: object): value is DocumentUrlInfoModel; export declare function DocumentUrlInfoModelFromJSON(json: any): DocumentUrlInfoModel; export declare function DocumentUrlInfoModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentUrlInfoModel; export declare function DocumentUrlInfoModelToJSON(json: any): DocumentUrlInfoModel; export declare function DocumentUrlInfoModelToJSONTyped(value?: DocumentUrlInfoModel | null, ignoreDiscriminator?: boolean): any;