/* Options: Date: 2025-12-06 07:22:12 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: CrewContactsRequest.* //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/CrewContacts/{CrewID}", Verbs="GET,OPTIONS") public static class CrewContactsRequest implements IReturn { public Integer CrewID = null; public ArrayList CrewContact = new ArrayList(); public Integer getCrewID() { return CrewID; } public CrewContactsRequest setCrewID(Integer value) { this.CrewID = value; return this; } public ArrayList getCrewContact() { return CrewContact; } public CrewContactsRequest setCrewContact(ArrayList value) { this.CrewContact = value; return this; } private static Object responseType = CrewContactResponse.class; public Object getResponseType() { return responseType; } } public static class CrewContactResponse { public ResponseStatus ResponseStatus = null; public ArrayList CrewContact = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CrewContactResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getCrewContact() { return CrewContact; } public CrewContactResponse setCrewContact(ArrayList value) { this.CrewContact = value; return this; } } public static class CrewContact { public Integer CrewContactID = null; public Integer CrewID = null; public String CrewName = null; public Integer ContactID = null; public String ContactName = null; public Boolean Active = null; public Boolean Deleted = null; public Date DeletedDate = null; public Date RecordCreatedDate = null; public UUID CreatedByUID = null; public String ContactImage = null; public String FirstName = null; public String LastName = null; public String Initials = null; public Integer getCrewContactID() { return CrewContactID; } public CrewContact setCrewContactID(Integer value) { this.CrewContactID = value; return this; } public Integer getCrewID() { return CrewID; } public CrewContact setCrewID(Integer value) { this.CrewID = value; return this; } public String getCrewName() { return CrewName; } public CrewContact setCrewName(String value) { this.CrewName = value; return this; } public Integer getContactID() { return ContactID; } public CrewContact setContactID(Integer value) { this.ContactID = value; return this; } public String getContactName() { return ContactName; } public CrewContact setContactName(String value) { this.ContactName = value; return this; } public Boolean isActive() { return Active; } public CrewContact setActive(Boolean value) { this.Active = value; return this; } public Boolean isDeleted() { return Deleted; } public CrewContact setDeleted(Boolean value) { this.Deleted = value; return this; } public Date getDeletedDate() { return DeletedDate; } public CrewContact setDeletedDate(Date value) { this.DeletedDate = value; return this; } public Date getRecordCreatedDate() { return RecordCreatedDate; } public CrewContact setRecordCreatedDate(Date value) { this.RecordCreatedDate = value; return this; } public UUID getCreatedByUID() { return CreatedByUID; } public CrewContact setCreatedByUID(UUID value) { this.CreatedByUID = value; return this; } public String getContactImage() { return ContactImage; } public CrewContact setContactImage(String value) { this.ContactImage = value; return this; } public String getFirstName() { return FirstName; } public CrewContact setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public CrewContact setLastName(String value) { this.LastName = value; return this; } public String getInitials() { return Initials; } public CrewContact setInitials(String value) { this.Initials = value; return this; } } }