UNIVPLMDataIntegration/Web/src/api-services/system/models/admin-netresult-list-user-output.ts

72 lines
1.7 KiB
TypeScript
Raw Normal View History

/* 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.
*/
import { UserOutput } from './user-output';
/**
*
*
* @export
* @interface AdminNETResultListUserOutput
*/
export interface AdminNETResultListUserOutput {
/**
*
*
* @type {number}
* @memberof AdminNETResultListUserOutput
*/
code?: number;
/**
* successwarningerror
*
* @type {string}
* @memberof AdminNETResultListUserOutput
*/
type?: string | null;
/**
*
*
* @type {string}
* @memberof AdminNETResultListUserOutput
*/
message?: string | null;
/**
*
*
* @type {Array<UserOutput>}
* @memberof AdminNETResultListUserOutput
*/
result?: Array<UserOutput> | null;
/**
*
*
* @type {any}
* @memberof AdminNETResultListUserOutput
*/
extras?: any | null;
/**
*
*
* @type {Date}
* @memberof AdminNETResultListUserOutput
*/
time?: Date;
}