umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
51 lines (50 loc) • 1.46 kB
TypeScript
/**
* 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 MemberValueModel
*/
export interface MemberValueModel {
/**
*
* @type {string}
* @memberof MemberValueModel
*/
culture?: string | null;
/**
*
* @type {string}
* @memberof MemberValueModel
*/
segment?: string | null;
/**
*
* @type {string}
* @memberof MemberValueModel
*/
alias: string;
/**
*
* @type {any}
* @memberof MemberValueModel
*/
value?: any | null;
}
/**
* Check if a given object implements the MemberValueModel interface.
*/
export declare function instanceOfMemberValueModel(value: object): value is MemberValueModel;
export declare function MemberValueModelFromJSON(json: any): MemberValueModel;
export declare function MemberValueModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberValueModel;
export declare function MemberValueModelToJSON(json: any): MemberValueModel;
export declare function MemberValueModelToJSONTyped(value?: MemberValueModel | null, ignoreDiscriminator?: boolean): any;