UNIVPLMDataIntegration/Web/src/api-services/models/admin-result-dictionary-string-string.ts

71 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
*
* @export
* @interface AdminResultDictionaryStringString
*/
export interface AdminResultDictionaryStringString {
/**
*
*
* @type {number}
* @memberof AdminResultDictionaryStringString
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminResultDictionaryStringString
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminResultDictionaryStringString
*/
message?: string | null;
/**
*
*
* @type {{ [key: string]: string; }}
* @memberof AdminResultDictionaryStringString
*/
result?: { [key: string]: string; } | null;
/**
*
*
* @type {any}
* @memberof AdminResultDictionaryStringString
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminResultDictionaryStringString
*/
time?: Date;
}