Files
pyrofetes/src/app/services/api/model/constructor-info.ts
T

50 lines
1.4 KiB
TypeScript

/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { CustomAttributeData } from './custom-attribute-data';
import { CallingConventions } from './calling-conventions';
import { MethodImplAttributes } from './method-impl-attributes';
import { Module } from './module';
import { MemberTypes } from './member-types';
export interface ConstructorInfo {
module?: Module;
customAttributes?: Array<CustomAttributeData>;
isCollectible?: boolean;
metadataToken?: number;
methodImplementationFlags?: MethodImplAttributes;
callingConvention?: CallingConventions;
isAbstract?: boolean;
isConstructor?: boolean;
isFinal?: boolean;
isHideBySig?: boolean;
isSpecialName?: boolean;
isStatic?: boolean;
isVirtual?: boolean;
isAssembly?: boolean;
isFamily?: boolean;
isFamilyAndAssembly?: boolean;
isFamilyOrAssembly?: boolean;
isPrivate?: boolean;
isPublic?: boolean;
isConstructedGenericMethod?: boolean;
isGenericMethod?: boolean;
isGenericMethodDefinition?: boolean;
containsGenericParameters?: boolean;
isSecurityCritical?: boolean;
isSecuritySafeCritical?: boolean;
isSecurityTransparent?: boolean;
memberType?: MemberTypes;
}
export namespace ConstructorInfo {
}