UNIVPLMDataIntegration/Web/src/api-services/models/sugar-index-attribute.ts

48 lines
1.3 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 { OrderByType } from './order-by-type';
/**
*
*
* @export
* @interface SugarIndexAttribute
*/
export interface SugarIndexAttribute {
/**
* @type {any}
* @memberof SugarIndexAttribute
*/
typeId?: any | null;
/**
* @type {string}
* @memberof SugarIndexAttribute
*/
indexName?: string | null;
/**
* @type {{ [key: string]: OrderByType; }}
* @memberof SugarIndexAttribute
*/
indexFields?: { [key: string]: OrderByType; } | null;
/**
* @type {boolean}
* @memberof SugarIndexAttribute
*/
isUnique?: boolean;
}