/* Options: Date: 2025-12-06 06:26:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AgentUpdatePasswordRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/v1/AgentUpdatePassword", "POST,OPTIONS") export class AgentUpdatePasswordRequest { public Username: string; public Password: string; public Update: boolean; public EncryptPass: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AgentUpdatePasswordRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }