/* Options: Date: 2024-12-22 21:22:48 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteContact.* //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 { public static class DeleteContact implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteContact setId(Integer value) { this.id = value; return this; } } public static class Contact { public Integer id = null; @Computed() public String displayName = null; public String profileUrl = null; public String firstName = null; public String lastName = null; public Integer salaryExpectation = null; public String jobType = null; public Integer availabilityWeeks = null; public EmploymentType preferredWorkType = null; public String preferredLocation = null; public String email = null; public String phone = null; public ArrayList skills = null; public String about = null; public ArrayList applications = new ArrayList(); public Integer getId() { return id; } public Contact setId(Integer value) { this.id = value; return this; } public String getDisplayName() { return displayName; } public Contact setDisplayName(String value) { this.displayName = value; return this; } public String getProfileUrl() { return profileUrl; } public Contact setProfileUrl(String value) { this.profileUrl = value; return this; } public String getFirstName() { return firstName; } public Contact setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public Contact setLastName(String value) { this.lastName = value; return this; } public Integer getSalaryExpectation() { return salaryExpectation; } public Contact setSalaryExpectation(Integer value) { this.salaryExpectation = value; return this; } public String getJobType() { return jobType; } public Contact setJobType(String value) { this.jobType = value; return this; } public Integer getAvailabilityWeeks() { return availabilityWeeks; } public Contact setAvailabilityWeeks(Integer value) { this.availabilityWeeks = value; return this; } public EmploymentType getPreferredWorkType() { return preferredWorkType; } public Contact setPreferredWorkType(EmploymentType value) { this.preferredWorkType = value; return this; } public String getPreferredLocation() { return preferredLocation; } public Contact setPreferredLocation(String value) { this.preferredLocation = value; return this; } public String getEmail() { return email; } public Contact setEmail(String value) { this.email = value; return this; } public String getPhone() { return phone; } public Contact setPhone(String value) { this.phone = value; return this; } public ArrayList getSkills() { return skills; } public Contact setSkills(ArrayList value) { this.skills = value; return this; } public String getAbout() { return about; } public Contact setAbout(String value) { this.about = value; return this; } public ArrayList getApplications() { return applications; } public Contact setApplications(ArrayList value) { this.applications = value; return this; } } }