22 lines
641 B
TypeScript
22 lines
641 B
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 { CustomAttributeTypedArgument } from './custom-attribute-typed-argument';
|
|
import { CustomAttributeNamedArgument } from './custom-attribute-named-argument';
|
|
import { ConstructorInfo } from './constructor-info';
|
|
|
|
|
|
export interface CustomAttributeData {
|
|
attributeType?: string;
|
|
constructor?: ConstructorInfo;
|
|
constructorArguments?: Array<CustomAttributeTypedArgument>;
|
|
namedArguments?: Array<CustomAttributeNamedArgument>;
|
|
}
|
|
|