umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 loc) • 1.58 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 MemberTypePropertyTypeVisibilityModel
*/
export interface MemberTypePropertyTypeVisibilityModel {
/**
*
* @type {boolean}
* @memberof MemberTypePropertyTypeVisibilityModel
*/
memberCanView: boolean;
/**
*
* @type {boolean}
* @memberof MemberTypePropertyTypeVisibilityModel
*/
memberCanEdit: boolean;
}
/**
* Check if a given object implements the MemberTypePropertyTypeVisibilityModel interface.
*/
export declare function instanceOfMemberTypePropertyTypeVisibilityModel(value: object): value is MemberTypePropertyTypeVisibilityModel;
export declare function MemberTypePropertyTypeVisibilityModelFromJSON(json: any): MemberTypePropertyTypeVisibilityModel;
export declare function MemberTypePropertyTypeVisibilityModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypePropertyTypeVisibilityModel;
export declare function MemberTypePropertyTypeVisibilityModelToJSON(json: any): MemberTypePropertyTypeVisibilityModel;
export declare function MemberTypePropertyTypeVisibilityModelToJSONTyped(value?: MemberTypePropertyTypeVisibilityModel | null, ignoreDiscriminator?: boolean): any;