/* Options: Date: 2024-10-06 10:29:25 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: EzProxyAuthRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/EzProxy/Auth", "POST") export class EzProxyAuthRequest { public regent_login: string; public password: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EzProxyAuthRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }