/* Options: Date: 2025-12-06 07:42:30 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: ContactInvitationRequest.* //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/ContactInvitation", Verbs="POST,OPTIONS") public static class ContactInvitationRequest implements IReturn { public ContactInvitation ContactInvitation = null; public ContactInvitation getContactInvitation() { return ContactInvitation; } public ContactInvitationRequest setContactInvitation(ContactInvitation value) { this.ContactInvitation = value; return this; } private static Object responseType = ContactInvitationResponse.class; public Object getResponseType() { return responseType; } } public static class ContactInvitationResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ContactInvitationResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class ContactInvitation { public Integer Id = null; public Integer AgentId = null; public Integer ContactId = null; public String Url = null; public String UrlCode = null; public Integer iDecideUserId = null; public Date DateCreated = null; public UUID CreatedBy = null; public Boolean Deleted = null; public Date DateDeleted = null; public UUID DeletedBy = null; public Integer getId() { return Id; } public ContactInvitation setId(Integer value) { this.Id = value; return this; } public Integer getAgentId() { return AgentId; } public ContactInvitation setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getContactId() { return ContactId; } public ContactInvitation setContactId(Integer value) { this.ContactId = value; return this; } public String getUrl() { return Url; } public ContactInvitation setUrl(String value) { this.Url = value; return this; } public String getUrlCode() { return UrlCode; } public ContactInvitation setUrlCode(String value) { this.UrlCode = value; return this; } public Integer getIDecideUserId() { return iDecideUserId; } public ContactInvitation setIDecideUserId(Integer value) { this.iDecideUserId = value; return this; } public Date getDateCreated() { return DateCreated; } public ContactInvitation setDateCreated(Date value) { this.DateCreated = value; return this; } public UUID getCreatedBy() { return CreatedBy; } public ContactInvitation setCreatedBy(UUID value) { this.CreatedBy = value; return this; } public Boolean isDeleted() { return Deleted; } public ContactInvitation setDeleted(Boolean value) { this.Deleted = value; return this; } public Date getDateDeleted() { return DateDeleted; } public ContactInvitation setDateDeleted(Date value) { this.DateDeleted = value; return this; } public UUID getDeletedBy() { return DeletedBy; } public ContactInvitation setDeletedBy(UUID value) { this.DeletedBy = value; return this; } } }