UNPKG

umbraco-management-api-client

Version:

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

33 lines (32 loc) 1.45 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 MemberTypeConfigurationResponseModel */ export interface MemberTypeConfigurationResponseModel { /** * * @type {Set<string>} * @memberof MemberTypeConfigurationResponseModel */ reservedFieldNames: Set<string>; } /** * Check if a given object implements the MemberTypeConfigurationResponseModel interface. */ export declare function instanceOfMemberTypeConfigurationResponseModel(value: object): value is MemberTypeConfigurationResponseModel; export declare function MemberTypeConfigurationResponseModelFromJSON(json: any): MemberTypeConfigurationResponseModel; export declare function MemberTypeConfigurationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MemberTypeConfigurationResponseModel; export declare function MemberTypeConfigurationResponseModelToJSON(json: any): MemberTypeConfigurationResponseModel; export declare function MemberTypeConfigurationResponseModelToJSONTyped(value?: MemberTypeConfigurationResponseModel | null, ignoreDiscriminator?: boolean): any;