umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
39 lines (38 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 DictionaryItemTranslationModel
*/
export interface DictionaryItemTranslationModel {
/**
*
* @type {string}
* @memberof DictionaryItemTranslationModel
*/
isoCode: string;
/**
*
* @type {string}
* @memberof DictionaryItemTranslationModel
*/
translation: string;
}
/**
* Check if a given object implements the DictionaryItemTranslationModel interface.
*/
export declare function instanceOfDictionaryItemTranslationModel(value: object): value is DictionaryItemTranslationModel;
export declare function DictionaryItemTranslationModelFromJSON(json: any): DictionaryItemTranslationModel;
export declare function DictionaryItemTranslationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DictionaryItemTranslationModel;
export declare function DictionaryItemTranslationModelToJSON(json: any): DictionaryItemTranslationModel;
export declare function DictionaryItemTranslationModelToJSONTyped(value?: DictionaryItemTranslationModel | null, ignoreDiscriminator?: boolean): any;