umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
40 lines (39 loc) • 1.71 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.
*/
import type { CreateDictionaryItemRequestModelTranslationsInner } from './CreateDictionaryItemRequestModelTranslationsInner';
/**
*
* @export
* @interface UpdateDictionaryItemRequestModel
*/
export interface UpdateDictionaryItemRequestModel {
/**
*
* @type {string}
* @memberof UpdateDictionaryItemRequestModel
*/
name: string;
/**
*
* @type {Array<CreateDictionaryItemRequestModelTranslationsInner>}
* @memberof UpdateDictionaryItemRequestModel
*/
translations: Array<CreateDictionaryItemRequestModelTranslationsInner>;
}
/**
* Check if a given object implements the UpdateDictionaryItemRequestModel interface.
*/
export declare function instanceOfUpdateDictionaryItemRequestModel(value: object): value is UpdateDictionaryItemRequestModel;
export declare function UpdateDictionaryItemRequestModelFromJSON(json: any): UpdateDictionaryItemRequestModel;
export declare function UpdateDictionaryItemRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateDictionaryItemRequestModel;
export declare function UpdateDictionaryItemRequestModelToJSON(json: any): UpdateDictionaryItemRequestModel;
export declare function UpdateDictionaryItemRequestModelToJSONTyped(value?: UpdateDictionaryItemRequestModel | null, ignoreDiscriminator?: boolean): any;