/* Options: Date: 2024-10-06 10:27:32 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DropRegistrationsForBalanceOwingRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/Registration/{reporting_term}/DropForBalanceOwing", "POST") export class DropRegistrationsForBalanceOwingRequest implements IReturn { public authorizing_uuid: string; public reporting_term: string; public is_preview_only: boolean; public override_drop_date?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DropRegistrationsForBalanceOwingRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }