/* Options: Date: 2025-12-06 06:26:15 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AgentUpdateSessionRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/Agent/UpdateSession", Verbs="POST,OPTIONS") public static class AgentUpdateSessionRequest implements IReturn { public String UserName = null; public String SessionId = null; public String getUserName() { return UserName; } public AgentUpdateSessionRequest setUserName(String value) { this.UserName = value; return this; } public String getSessionId() { return SessionId; } public AgentUpdateSessionRequest setSessionId(String value) { this.SessionId = value; return this; } private static Object responseType = AgentUpdateSessionResponse.class; public Object getResponseType() { return responseType; } } public static class AgentUpdateSessionResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentUpdateSessionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }