umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
51 lines (50 loc) • 1.62 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 CreateUserDataRequestModel
*/
export interface CreateUserDataRequestModel {
/**
*
* @type {string}
* @memberof CreateUserDataRequestModel
*/
group: string;
/**
*
* @type {string}
* @memberof CreateUserDataRequestModel
*/
identifier: string;
/**
*
* @type {string}
* @memberof CreateUserDataRequestModel
*/
value: string;
/**
*
* @type {string}
* @memberof CreateUserDataRequestModel
*/
key?: string | null;
}
/**
* Check if a given object implements the CreateUserDataRequestModel interface.
*/
export declare function instanceOfCreateUserDataRequestModel(value: object): value is CreateUserDataRequestModel;
export declare function CreateUserDataRequestModelFromJSON(json: any): CreateUserDataRequestModel;
export declare function CreateUserDataRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserDataRequestModel;
export declare function CreateUserDataRequestModelToJSON(json: any): CreateUserDataRequestModel;
export declare function CreateUserDataRequestModelToJSONTyped(value?: CreateUserDataRequestModel | null, ignoreDiscriminator?: boolean): any;