UNPKG

umbraco-management-api-client

Version:

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

57 lines (56 loc) 1.71 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 MemberValueResponseModel */ export interface MemberValueResponseModel { /** * * @type {string} * @memberof MemberValueResponseModel */ culture?: string | null; /** * * @type {string} * @memberof MemberValueResponseModel */ segment?: string | null; /** * * @type {string} * @memberof MemberValueResponseModel */ alias: string; /** * * @type {any} * @memberof MemberValueResponseModel */ value?: any | null; /** * * @type {string} * @memberof MemberValueResponseModel */ editorAlias: string; } /** * Check if a given object implements the MemberValueResponseModel interface. */ export declare function instanceOfMemberValueResponseModel(value: object): value is MemberValueResponseModel; export declare function MemberValueResponseModelFromJSON(json: any): MemberValueResponseModel; export declare function MemberValueResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberValueResponseModel; export declare function MemberValueResponseModelToJSON(json: any): MemberValueResponseModel; export declare function MemberValueResponseModelToJSONTyped(value?: MemberValueResponseModel | null, ignoreDiscriminator?: boolean): any;