UNIVPLMDataIntegration/Web/src/api-services/models/method-base.ts

223 lines
4.4 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.
*/
import { CallingConventions } from './calling-conventions';
import { CustomAttributeData } from './custom-attribute-data';
import { MemberTypes } from './member-types';
import { MethodAttributes } from './method-attributes';
import { MethodImplAttributes } from './method-impl-attributes';
import { Module } from './module';
import { RuntimeMethodHandle } from './runtime-method-handle';
import { Type } from './type';
/**
*
*
* @export
* @interface MethodBase
*/
export interface MethodBase {
/**
* @type {MemberTypes}
* @memberof MethodBase
*/
memberType?: MemberTypes;
/**
* @type {string}
* @memberof MethodBase
*/
name?: string | null;
/**
* @type {Type}
* @memberof MethodBase
*/
declaringType?: Type;
/**
* @type {Type}
* @memberof MethodBase
*/
reflectedType?: Type;
/**
* @type {Module}
* @memberof MethodBase
*/
module?: Module;
/**
* @type {Array<CustomAttributeData>}
* @memberof MethodBase
*/
customAttributes?: Array<CustomAttributeData> | null;
/**
* @type {boolean}
* @memberof MethodBase
*/
isCollectible?: boolean;
/**
* @type {number}
* @memberof MethodBase
*/
metadataToken?: number;
/**
* @type {MethodAttributes}
* @memberof MethodBase
*/
attributes?: MethodAttributes;
/**
* @type {MethodImplAttributes}
* @memberof MethodBase
*/
methodImplementationFlags?: MethodImplAttributes;
/**
* @type {CallingConventions}
* @memberof MethodBase
*/
callingConvention?: CallingConventions;
/**
* @type {boolean}
* @memberof MethodBase
*/
isAbstract?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isConstructor?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isFinal?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isHideBySig?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isSpecialName?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isStatic?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isVirtual?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isAssembly?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isFamily?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isFamilyAndAssembly?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isFamilyOrAssembly?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isPrivate?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isPublic?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isConstructedGenericMethod?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isGenericMethod?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isGenericMethodDefinition?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
containsGenericParameters?: boolean;
/**
* @type {RuntimeMethodHandle}
* @memberof MethodBase
*/
methodHandle?: RuntimeMethodHandle;
/**
* @type {boolean}
* @memberof MethodBase
*/
isSecurityCritical?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isSecuritySafeCritical?: boolean;
/**
* @type {boolean}
* @memberof MethodBase
*/
isSecurityTransparent?: boolean;
}