/* Options: Date: 2026-04-04 02:55:15 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDefaultUserProfile.* //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 GetDefaultUserProfile implements IReturn { /** * Unique Email address of the user. If the value passed is empty, UserId must be entered. */ @ApiMember(DataType="string", Description="Unique Email address of the user. If the value passed is empty, UserId must be entered.", Name="UserName", ParameterType="query") public String UserName = null; public String getUserName() { return UserName; } public GetDefaultUserProfile setUserName(String value) { this.UserName = value; return this; } private static Object responseType = UserProfileModel.class; public Object getResponseType() { return responseType; } } public static class UserProfileModel extends UserProfileSummaryModel { /** * Contact Date of Birth (when person type) */ @ApiMember(DataType="DateTime?", Description="Contact Date of Birth (when person type)", Name="BirthDate", ParameterType="query") public Date BirthDate = null; /** * Contact marital status (when person type) */ @ApiMember(DataType="string", Description="Contact marital status (when person type)", Name="MaritalStatusName", ParameterType="query") public String MaritalStatusName = null; /** * Contact gender (when person type) */ @ApiMember(DataType="string", Description="Contact gender (when person type)", Name="GenderName", ParameterType="query") public String GenderName = null; /** * The Gender Guid of the contact. */ @ApiMember(DataType="Guid", Description="The Gender Guid of the contact.", Name="GenderId", ParameterType="query") public UUID GenderId = null; /** * All contact details of the contact */ @ApiMember(DataType="List", Description="All contact details of the contact", Name="ContactDetails", ParameterType="query") public ArrayList ContactDetails = null; /** * Primary Street Address */ @ApiMember(DataType="ContactDetail", Description="Primary Street Address", Name="PrimaryStreetAddress ") public ContactDetailModel PrimaryStreetAddress = null; /** * Primary Postal Address */ @ApiMember(DataType="ContactDetail", Description="Primary Postal Address", Name="PrimaryPostalAddress ") public ContactDetailModel PrimaryPostalAddress = null; /** * Primary Registered Address */ @ApiMember(DataType="ContactDetail", Description="Primary Registered Address", Name="PrimaryRegisteredAddress ") public ContactDetailModel PrimaryRegisteredAddress = null; /** * Primary Email Address */ @ApiMember(DataType="ContactDetail", Description="Primary Email Address", Name="PrimaryEmail ") public ContactDetailModel PrimaryEmail = null; /** * Primary Mobile Number */ @ApiMember(DataType="ContactDetail", Description="Primary Mobile Number", Name="PrimaryMobile") public ContactDetailModel PrimaryMobile = null; /** * Primary Non-Mobile Number */ @ApiMember(DataType="ContactDetail", Description="Primary Non-Mobile Number", Name="PrimaryPhone") public ContactDetailModel PrimaryPhone = null; /** * Primary Fax Number */ @ApiMember(DataType="ContactDetail", Description="Primary Fax Number", Name="PrimaryFax") public ContactDetailModel PrimaryFax = null; /** * Primary Web Address */ @ApiMember(DataType="ContactDetail", Description="Primary Web Address", Name="PrimaryWeb") public ContactDetailModel PrimaryWeb = null; /** * Social Media Twitter */ @ApiMember(DataType="ContactDetail", Description="Social Media Twitter", Name="SocialMediaTwitter") public ContactDetailModel SocialMediaTwitter = null; /** * Social Media Facebook */ @ApiMember(DataType="ContactDetail", Description="Social Media Facebook", Name="SocialMediaFacebook") public ContactDetailModel SocialMediaFacebook = null; /** * Social Media Instagram */ @ApiMember(DataType="ContactDetail", Description="Social Media Instagram", Name="SocialMediaInstagram") public ContactDetailModel SocialMediaInstagram = null; /** * Have all connections to the contact been removed? */ @ApiMember(DataType="bool", Description="Have all connections to the contact been removed?", Name="IsRemovedContact") public Boolean IsRemovedContact = null; /** * True if this is the users default profile. */ @ApiMember(DataType="bool", Description="True if this is the users default profile.", Name="IsDefault", ParameterType="query") public Boolean IsDefault = null; /** * True if the users email on this profile can be edited. */ @ApiMember(DataType="bool", Description="True if the users email on this profile can be edited.", Name="IsEmailEditable", ParameterType="query") public Boolean IsEmailEditable = null; /** * Primary image Content sent as a file stream contents (if not attached to the request) */ @ApiMember(DataType="string", Description="Primary image Content sent as a file stream contents (if not attached to the request)", Name="PrimaryImageContent") public String PrimaryImageContent = null; /** * Primary image Content type sent as a file stream contents (if not attached to the request) */ @ApiMember(DataType="string", Description="Primary image Content type sent as a file stream contents (if not attached to the request)", Name="PrimaryImageContentType") public String PrimaryImageContentType = null; /** * Primary image file name */ @ApiMember(DataType="string", Description="Primary image file name", Name="PrimaryImageFileName") public String PrimaryImageFileName = null; public Date getBirthDate() { return BirthDate; } public UserProfileModel setBirthDate(Date value) { this.BirthDate = value; return this; } public String getMaritalStatusName() { return MaritalStatusName; } public UserProfileModel setMaritalStatusName(String value) { this.MaritalStatusName = value; return this; } public String getGenderName() { return GenderName; } public UserProfileModel setGenderName(String value) { this.GenderName = value; return this; } public UUID getGenderId() { return GenderId; } public UserProfileModel setGenderId(UUID value) { this.GenderId = value; return this; } public ArrayList getContactDetails() { return ContactDetails; } public UserProfileModel setContactDetails(ArrayList value) { this.ContactDetails = value; return this; } public ContactDetailModel getPrimaryStreetAddress() { return PrimaryStreetAddress; } public UserProfileModel setPrimaryStreetAddress(ContactDetailModel value) { this.PrimaryStreetAddress = value; return this; } public ContactDetailModel getPrimaryPostalAddress() { return PrimaryPostalAddress; } public UserProfileModel setPrimaryPostalAddress(ContactDetailModel value) { this.PrimaryPostalAddress = value; return this; } public ContactDetailModel getPrimaryRegisteredAddress() { return PrimaryRegisteredAddress; } public UserProfileModel setPrimaryRegisteredAddress(ContactDetailModel value) { this.PrimaryRegisteredAddress = value; return this; } public ContactDetailModel getPrimaryEmail() { return PrimaryEmail; } public UserProfileModel setPrimaryEmail(ContactDetailModel value) { this.PrimaryEmail = value; return this; } public ContactDetailModel getPrimaryMobile() { return PrimaryMobile; } public UserProfileModel setPrimaryMobile(ContactDetailModel value) { this.PrimaryMobile = value; return this; } public ContactDetailModel getPrimaryPhone() { return PrimaryPhone; } public UserProfileModel setPrimaryPhone(ContactDetailModel value) { this.PrimaryPhone = value; return this; } public ContactDetailModel getPrimaryFax() { return PrimaryFax; } public UserProfileModel setPrimaryFax(ContactDetailModel value) { this.PrimaryFax = value; return this; } public ContactDetailModel getPrimaryWeb() { return PrimaryWeb; } public UserProfileModel setPrimaryWeb(ContactDetailModel value) { this.PrimaryWeb = value; return this; } public ContactDetailModel getSocialMediaTwitter() { return SocialMediaTwitter; } public UserProfileModel setSocialMediaTwitter(ContactDetailModel value) { this.SocialMediaTwitter = value; return this; } public ContactDetailModel getSocialMediaFacebook() { return SocialMediaFacebook; } public UserProfileModel setSocialMediaFacebook(ContactDetailModel value) { this.SocialMediaFacebook = value; return this; } public ContactDetailModel getSocialMediaInstagram() { return SocialMediaInstagram; } public UserProfileModel setSocialMediaInstagram(ContactDetailModel value) { this.SocialMediaInstagram = value; return this; } public Boolean getIsRemovedContact() { return IsRemovedContact; } public UserProfileModel setIsRemovedContact(Boolean value) { this.IsRemovedContact = value; return this; } public Boolean getIsDefault() { return IsDefault; } public UserProfileModel setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsEmailEditable() { return IsEmailEditable; } public UserProfileModel setIsEmailEditable(Boolean value) { this.IsEmailEditable = value; return this; } public String getPrimaryImageContent() { return PrimaryImageContent; } public UserProfileModel setPrimaryImageContent(String value) { this.PrimaryImageContent = value; return this; } public String getPrimaryImageContentType() { return PrimaryImageContentType; } public UserProfileModel setPrimaryImageContentType(String value) { this.PrimaryImageContentType = value; return this; } public String getPrimaryImageFileName() { return PrimaryImageFileName; } public UserProfileModel setPrimaryImageFileName(String value) { this.PrimaryImageFileName = value; return this; } } public static class UserProfileSummaryModel { /** * User Profile Id */ @ApiMember(DataType="Guid", Description="User Profile Id", Name="UserProfileId") public UUID UserProfileId = null; /** * User linked to the profile */ @ApiMember(DataType="Guid", Description="User linked to the profile", Name="UserId") public UUID UserId = null; /** * Contact linked to the profile */ @ApiMember(DataType="Guid", Description="Contact linked to the profile", Name="ContactId") public UUID ContactId = null; /** * User linked to the profile */ @ApiMember(DataType="string", Description="User linked to the profile", Name="UserName") public String UserName = null; /** * User Profile Name */ @ApiMember(DataType="string", Description="User Profile Name", Name="ProfileName") public String ProfileName = null; /** * Full name of the contact linked to the profile */ @ApiMember(DataType="string", Description="Full name of the contact linked to the profile", Name="ContactFullName") public String ContactFullName = null; /** * Email Address of the contact linked to the profile */ @ApiMember(DataType="string", Description="Email Address of the contact linked to the profile", Name="EmailAddress") public String EmailAddress = null; /** * Email signature of the contact linked to the profile */ @ApiMember(DataType="string", Description="Email signature of the contact linked to the profile", Name="EmailSignature") public String EmailSignature = null; /** * Mobile number of the contact linked to the profile */ @ApiMember(DataType="string", Description="Mobile number of the contact linked to the profile", Name="MobileNumber") public String MobileNumber = null; /** * Phone number of the contact linked to the profile */ @ApiMember(DataType="string", Description="Phone number of the contact linked to the profile", Name="PhoneNumber") public String PhoneNumber = null; /** * Type of contact (person, organisation etc.) linked to the profile */ @ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeId") public UUID ContactTypeId = null; /** * Type of contact (person, organisation etc.) linked to the profile */ @ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeName") public String ContactTypeName = null; /** * First name of the contact linked to the profile */ @ApiMember(DataType="string", Description="First name of the contact linked to the profile", Name="FirstName") public String FirstName = null; /** * Surname of the contact linked to the profile */ @ApiMember(DataType="string", Description="Surname of the contact linked to the profile", Name="Surname") public String Surname = null; /** * Title of contact linked to the profile */ @ApiMember(DataType="string", Description="Title of contact linked to the profile", Name="Title") public String Title = null; /** * Legal name of contact linked to the profile */ @ApiMember(DataType="string", Description="Legal name of contact linked to the profile", Name="LegalName") public String LegalName = null; /** * Trading name of contact linked to the profile */ @ApiMember(DataType="string", Description="Trading name of contact linked to the profile", Name="TradingName") public String TradingName = null; /** * Australian Business Number */ @ApiMember(DataType="string", Description="Australian Business Number", Name="Abn", ParameterType="query") public String Abn = null; /** * Australian Company Number */ @ApiMember(DataType="string", Description="Australian Company Number", Name="Acn", ParameterType="query") public String Acn = null; /** * Australian Registered Body Number */ @ApiMember(DataType="string", Description="Australian Registered Body Number", Name="Arbn", ParameterType="query") public String Arbn = null; /** * Indicates if the Contact is registered for GST. */ @ApiMember(DataType="bool", Description="Indicates if the Contact is registered for GST.", Name="GstRegistered", ParameterType="query") public Boolean GstRegistered = null; /** * True if english is a secondary language for the contact. */ @ApiMember(DataType="bool", Description="True if english is a secondary language for the contact.", Name="ESL", ParameterType="query") public Boolean ESL = null; /** * Language that is the primary language for the contact. */ @ApiMember(DataType="string", Description="Language that is the primary language for the contact.", Name="Language", ParameterType="query") public String Language = null; /** * True if an interpreter is required. */ @ApiMember(DataType="bool", Description="True if an interpreter is required.", Name="InterpreterRequired", ParameterType="query") public Boolean InterpreterRequired = null; /** * Licensee specific notes about the contact. */ @ApiMember(DataType="string", Description="Licensee specific notes about the contact.", Name="LicenseeNotes", ParameterType="query") public String LicenseeNotes = null; /** * Profile photo of contact linked to the profile */ @ApiMember(DataType="string", Description="Profile photo of contact linked to the profile", Name="ProfilePhotoUrl") public String ProfilePhotoUrl = null; /** * Thumbnail photo of contact linked to the profile */ @ApiMember(DataType="string", Description="Thumbnail photo of contact linked to the profile", Name="ProfilePhotoThumbnailUrl") public String ProfilePhotoThumbnailUrl = null; /** * Profile photo id of contact linked to the profile */ @ApiMember(DataType="Guid", Description="Profile photo id of contact linked to the profile", Name="ProfileImageId") public UUID ProfileImageId = null; /** * Profile description */ @ApiMember(DataType="string", Description="Profile description", Name="Description") public String Description = null; /** * Employment Industry */ @ApiMember(DataType="string", Description="Employment Industry", Name="EmploymentIndustry") public String EmploymentIndustry = null; /** * Employment Role */ @ApiMember(DataType="string", Description="Employment Role", Name="EmploymentRole") public String EmploymentRole = null; /** * Areas of Work */ @ApiMember(DataType="string", Description="Areas of Work", Name="EmploymentGeographicArea") public String EmploymentGeographicArea = null; /** * The contacts timezone. */ @ApiMember(DataType="Guid", Description="The contacts timezone.", Name="Timezone", ParameterType="query") public UUID Timezone = null; /** * Timezone Name */ @ApiMember(DataType="string", Description="Timezone Name", Name="TimezoneName", ParameterType="query") public String TimezoneName = null; /** * The primary address of the contact */ @ApiMember(DataType="string", Description="The primary address of the contact", Name="PrimaryAddress", ParameterType="query") public String PrimaryAddress = null; /** * Is this an active contact? Or an inactive contact (deleted account)? */ @ApiMember(DataType="bool", Description="Is this an active contact? Or an inactive contact (deleted account)?", Name="IsActiveContact") public Boolean IsActiveContact = null; public UUID getUserProfileId() { return UserProfileId; } public UserProfileSummaryModel setUserProfileId(UUID value) { this.UserProfileId = value; return this; } public UUID getUserId() { return UserId; } public UserProfileSummaryModel setUserId(UUID value) { this.UserId = value; return this; } public UUID getContactId() { return ContactId; } public UserProfileSummaryModel setContactId(UUID value) { this.ContactId = value; return this; } public String getUserName() { return UserName; } public UserProfileSummaryModel setUserName(String value) { this.UserName = value; return this; } public String getProfileName() { return ProfileName; } public UserProfileSummaryModel setProfileName(String value) { this.ProfileName = value; return this; } public String getContactFullName() { return ContactFullName; } public UserProfileSummaryModel setContactFullName(String value) { this.ContactFullName = value; return this; } public String getEmailAddress() { return EmailAddress; } public UserProfileSummaryModel setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailSignature() { return EmailSignature; } public UserProfileSummaryModel setEmailSignature(String value) { this.EmailSignature = value; return this; } public String getMobileNumber() { return MobileNumber; } public UserProfileSummaryModel setMobileNumber(String value) { this.MobileNumber = value; return this; } public String getPhoneNumber() { return PhoneNumber; } public UserProfileSummaryModel setPhoneNumber(String value) { this.PhoneNumber = value; return this; } public UUID getContactTypeId() { return ContactTypeId; } public UserProfileSummaryModel setContactTypeId(UUID value) { this.ContactTypeId = value; return this; } public String getContactTypeName() { return ContactTypeName; } public UserProfileSummaryModel setContactTypeName(String value) { this.ContactTypeName = value; return this; } public String getFirstName() { return FirstName; } public UserProfileSummaryModel setFirstName(String value) { this.FirstName = value; return this; } public String getSurname() { return Surname; } public UserProfileSummaryModel setSurname(String value) { this.Surname = value; return this; } public String getTitle() { return Title; } public UserProfileSummaryModel setTitle(String value) { this.Title = value; return this; } public String getLegalName() { return LegalName; } public UserProfileSummaryModel setLegalName(String value) { this.LegalName = value; return this; } public String getTradingName() { return TradingName; } public UserProfileSummaryModel setTradingName(String value) { this.TradingName = value; return this; } public String getAbn() { return Abn; } public UserProfileSummaryModel setAbn(String value) { this.Abn = value; return this; } public String getAcn() { return Acn; } public UserProfileSummaryModel setAcn(String value) { this.Acn = value; return this; } public String getArbn() { return Arbn; } public UserProfileSummaryModel setArbn(String value) { this.Arbn = value; return this; } public Boolean isGstRegistered() { return GstRegistered; } public UserProfileSummaryModel setGstRegistered(Boolean value) { this.GstRegistered = value; return this; } public Boolean isEsl() { return ESL; } public UserProfileSummaryModel setEsl(Boolean value) { this.ESL = value; return this; } public String getLanguage() { return Language; } public UserProfileSummaryModel setLanguage(String value) { this.Language = value; return this; } public Boolean isInterpreterRequired() { return InterpreterRequired; } public UserProfileSummaryModel setInterpreterRequired(Boolean value) { this.InterpreterRequired = value; return this; } public String getLicenseeNotes() { return LicenseeNotes; } public UserProfileSummaryModel setLicenseeNotes(String value) { this.LicenseeNotes = value; return this; } public String getProfilePhotoUrl() { return ProfilePhotoUrl; } public UserProfileSummaryModel setProfilePhotoUrl(String value) { this.ProfilePhotoUrl = value; return this; } public String getProfilePhotoThumbnailUrl() { return ProfilePhotoThumbnailUrl; } public UserProfileSummaryModel setProfilePhotoThumbnailUrl(String value) { this.ProfilePhotoThumbnailUrl = value; return this; } public UUID getProfileImageId() { return ProfileImageId; } public UserProfileSummaryModel setProfileImageId(UUID value) { this.ProfileImageId = value; return this; } public String getDescription() { return Description; } public UserProfileSummaryModel setDescription(String value) { this.Description = value; return this; } public String getEmploymentIndustry() { return EmploymentIndustry; } public UserProfileSummaryModel setEmploymentIndustry(String value) { this.EmploymentIndustry = value; return this; } public String getEmploymentRole() { return EmploymentRole; } public UserProfileSummaryModel setEmploymentRole(String value) { this.EmploymentRole = value; return this; } public String getEmploymentGeographicArea() { return EmploymentGeographicArea; } public UserProfileSummaryModel setEmploymentGeographicArea(String value) { this.EmploymentGeographicArea = value; return this; } public UUID getTimezone() { return Timezone; } public UserProfileSummaryModel setTimezone(UUID value) { this.Timezone = value; return this; } public String getTimezoneName() { return TimezoneName; } public UserProfileSummaryModel setTimezoneName(String value) { this.TimezoneName = value; return this; } public String getPrimaryAddress() { return PrimaryAddress; } public UserProfileSummaryModel setPrimaryAddress(String value) { this.PrimaryAddress = value; return this; } public Boolean getIsActiveContact() { return IsActiveContact; } public UserProfileSummaryModel setIsActiveContact(Boolean value) { this.IsActiveContact = value; return this; } } public static class ContactDetailModel { /** * Id of the Contact Method */ @ApiMember(DataType="Guid", Description="Id of the Contact Method", Name="ContactMethodId", ParameterType="body") public UUID ContactMethodId = null; /** * Contact Method Name */ @ApiMember(DataType="string", Description="Contact Method Name", Name="ContactMethodName", ParameterType="body") public String ContactMethodName = null; /** * If the contact method is an address, this will contain the address details. */ @ApiMember(DataType="ContactAddressModel", Description="If the contact method is an address, this will contain the address details.", Name="ContactAddress", ParameterType="body") public ContactAddressModel ContactAddress = null; /** * If the contact method is a phone, this will contain the phone details */ @ApiMember(DataType="PhoneModel", Description="If the contact method is a phone, this will contain the phone details", Name="ContactPhone", ParameterType="body") public PhoneModel ContactPhone = null; /** * Id of the country */ @ApiMember(DataType="Guid?", Description="Id of the country", Name="CountryId", ParameterType="body") public UUID CountryId = null; /** * A summary string representing the contact details */ @ApiMember(DataType="string", Description="A summary string representing the contact details", Name="ContactDetails", ParameterType="body") public String ContactDetails = null; /** * Notes about the contact details */ @ApiMember(DataType="string", Description="Notes about the contact details", Name="Notes", ParameterType="body") public String Notes = null; /** * Area Code if contact details are a phone number */ @ApiMember(DataType="string", Description="Area Code if contact details are a phone number", Name="ContactDetailsCode", ParameterType="body") public String ContactDetailsCode = null; /** * Order number of the contact method */ @ApiMember(DataType="int", Description="Order number of the contact method", Name="OrderContactMethod", ParameterType="body") public Integer OrderContactMethod = null; /** * True if this is the primary contact method */ @ApiMember(DataType="bool", Description="True if this is the primary contact method", Name="IsPrimaryContactMethod", ParameterType="body") public Boolean IsPrimaryContactMethod = null; /** * True if this contact method is an address */ @ApiMember(DataType="bool", Description="True if this contact method is an address", Name="IsAddress", ParameterType="body") public Boolean IsAddress = null; public UUID getContactMethodId() { return ContactMethodId; } public ContactDetailModel setContactMethodId(UUID value) { this.ContactMethodId = value; return this; } public String getContactMethodName() { return ContactMethodName; } public ContactDetailModel setContactMethodName(String value) { this.ContactMethodName = value; return this; } public ContactAddressModel getContactAddress() { return ContactAddress; } public ContactDetailModel setContactAddress(ContactAddressModel value) { this.ContactAddress = value; return this; } public PhoneModel getContactPhone() { return ContactPhone; } public ContactDetailModel setContactPhone(PhoneModel value) { this.ContactPhone = value; return this; } public UUID getCountryId() { return CountryId; } public ContactDetailModel setCountryId(UUID value) { this.CountryId = value; return this; } public String getContactDetails() { return ContactDetails; } public ContactDetailModel setContactDetails(String value) { this.ContactDetails = value; return this; } public String getNotes() { return Notes; } public ContactDetailModel setNotes(String value) { this.Notes = value; return this; } public String getContactDetailsCode() { return ContactDetailsCode; } public ContactDetailModel setContactDetailsCode(String value) { this.ContactDetailsCode = value; return this; } public Integer getOrderContactMethod() { return OrderContactMethod; } public ContactDetailModel setOrderContactMethod(Integer value) { this.OrderContactMethod = value; return this; } public Boolean getIsPrimaryContactMethod() { return IsPrimaryContactMethod; } public ContactDetailModel setIsPrimaryContactMethod(Boolean value) { this.IsPrimaryContactMethod = value; return this; } public Boolean getIsAddress() { return IsAddress; } public ContactDetailModel setIsAddress(Boolean value) { this.IsAddress = value; return this; } } public static class ContactDetailModel { /** * Contact Method Id */ @ApiMember(DataType="Guid", Description="Contact Method Id", Name="ContactMethodId", ParameterType="query") public UUID ContactMethodId = null; /** * Contact Method Name */ @ApiMember(DataType="string", Description="Contact Method Name", Name="ContactMethodName", ParameterType="query") public String ContactMethodName = null; /** * Contact Address Details */ @ApiMember(DataType="ContactAddressModel", Description="Contact Address Details", Name="ContactAddress", ParameterType="query") public ContactAddressModel ContactAddress = null; /** * Contact Phone Details */ @ApiMember(DataType="PhoneModel", Description="Contact Phone Details", Name="ContactPhone", ParameterType="query") public PhoneModel ContactPhone = null; /** * Country id */ @ApiMember(DataType="Guid", Description="Country id", Name="CountryId", ParameterType="query") public UUID CountryId = null; /** * Contact Details */ @ApiMember(DataType="string", Description="Contact Details", Name="ContactDetails", ParameterType="query") public String ContactDetails = null; /** * Notes */ @ApiMember(DataType="string", Description="Notes", Name="Notes", ParameterType="query") public String Notes = null; /** * Contact Details Code */ @ApiMember(DataType="string", Description="Contact Details Code", Name="ContactDetailsCode", ParameterType="query") public String ContactDetailsCode = null; /** * Order of Contact Method Id */ @ApiMember(DataType="int", Description="Order of Contact Method Id", Name="OrderContactMethod", ParameterType="query") public Integer OrderContactMethod = null; /** * Contact Method Id */ @ApiMember(DataType="bool", Description="Contact Method Id", Name="IsPrimaryContactMethod", ParameterType="query") public Boolean IsPrimaryContactMethod = null; /** * Is contact details an address */ @ApiMember(DataType="bool", Description="Is contact details an address", Name="IsAddress", ParameterType="query") public Boolean IsAddress = null; /** * Contact Contact Detail Id */ @ApiMember(DataType="Guid", Description="Contact Contact Detail Id", Name="ContactContactDetailId", ParameterType="query") public UUID ContactContactDetailId = null; /** * Contact Id */ @ApiMember(DataType="Guid", Description="Contact Id", Name="ContactId", ParameterType="query") public UUID ContactId = null; /** * Contact Details Id */ @ApiMember(DataType="Guid", Description="Contact Details Id", Name="ContactDetailId", ParameterType="query") public UUID ContactDetailId = null; /** * Is contact details a primary location */ @ApiMember(DataType="bool", Description="Is contact details a primary location", Name="IsPrimaryLocation", ParameterType="query") public Boolean IsPrimaryLocation = null; /** * Is contact details a registered location */ @ApiMember(DataType="bool", Description="Is contact details a registered location", Name="IsRegisteredLocation", ParameterType="query") public Boolean IsRegisteredLocation = null; /** * Is contact details a postal address */ @ApiMember(DataType="bool", Description="Is contact details a postal address", Name="IsPostal", ParameterType="query") public Boolean IsPostal = null; /** * Is contact details a phone number */ @ApiMember(DataType="bool", Description="Is contact details a phone number", Name="IsPhone", ParameterType="query") public Boolean IsPhone = null; /** * Email Signature Id */ @ApiMember(DataType="Guid", Description="Email Signature Id", Name="EmailSignatureId", ParameterType="query") public UUID EmailSignatureId = null; /** * Email Signature HTML */ @ApiMember(DataType="string", Description="Email Signature HTML", Name="EmailSignatureHTML", ParameterType="query") public String EmailSignatureHTML = null; /** * Email Signature Text */ @ApiMember(DataType="string", Description="Email Signature Text", Name="EmailSignatureText", ParameterType="query") public String EmailSignatureText = null; /** * API Key from Framework */ @ApiMember(DataType="string", Description="API Key from Framework", Name="ApiFrameworkAlternateKey", ParameterType="query") public String ApiFrameworkAlternateKey = null; public UUID getContactMethodId() { return ContactMethodId; } public ContactDetailModel setContactMethodId(UUID value) { this.ContactMethodId = value; return this; } public String getContactMethodName() { return ContactMethodName; } public ContactDetailModel setContactMethodName(String value) { this.ContactMethodName = value; return this; } public ContactAddressModel getContactAddress() { return ContactAddress; } public ContactDetailModel setContactAddress(ContactAddressModel value) { this.ContactAddress = value; return this; } public PhoneModel getContactPhone() { return ContactPhone; } public ContactDetailModel setContactPhone(PhoneModel value) { this.ContactPhone = value; return this; } public UUID getCountryId() { return CountryId; } public ContactDetailModel setCountryId(UUID value) { this.CountryId = value; return this; } public String getContactDetails() { return ContactDetails; } public ContactDetailModel setContactDetails(String value) { this.ContactDetails = value; return this; } public String getNotes() { return Notes; } public ContactDetailModel setNotes(String value) { this.Notes = value; return this; } public String getContactDetailsCode() { return ContactDetailsCode; } public ContactDetailModel setContactDetailsCode(String value) { this.ContactDetailsCode = value; return this; } public Integer getOrderContactMethod() { return OrderContactMethod; } public ContactDetailModel setOrderContactMethod(Integer value) { this.OrderContactMethod = value; return this; } public Boolean getIsPrimaryContactMethod() { return IsPrimaryContactMethod; } public ContactDetailModel setIsPrimaryContactMethod(Boolean value) { this.IsPrimaryContactMethod = value; return this; } public Boolean getIsAddress() { return IsAddress; } public ContactDetailModel setIsAddress(Boolean value) { this.IsAddress = value; return this; } public UUID getContactContactDetailId() { return ContactContactDetailId; } public ContactDetailModel setContactContactDetailId(UUID value) { this.ContactContactDetailId = value; return this; } public UUID getContactId() { return ContactId; } public ContactDetailModel setContactId(UUID value) { this.ContactId = value; return this; } public UUID getContactDetailId() { return ContactDetailId; } public ContactDetailModel setContactDetailId(UUID value) { this.ContactDetailId = value; return this; } public Boolean getIsPrimaryLocation() { return IsPrimaryLocation; } public ContactDetailModel setIsPrimaryLocation(Boolean value) { this.IsPrimaryLocation = value; return this; } public Boolean getIsRegisteredLocation() { return IsRegisteredLocation; } public ContactDetailModel setIsRegisteredLocation(Boolean value) { this.IsRegisteredLocation = value; return this; } public Boolean getIsPostal() { return IsPostal; } public ContactDetailModel setIsPostal(Boolean value) { this.IsPostal = value; return this; } public Boolean getIsPhone() { return IsPhone; } public ContactDetailModel setIsPhone(Boolean value) { this.IsPhone = value; return this; } public UUID getEmailSignatureId() { return EmailSignatureId; } public ContactDetailModel setEmailSignatureId(UUID value) { this.EmailSignatureId = value; return this; } public String getEmailSignatureHTML() { return EmailSignatureHTML; } public ContactDetailModel setEmailSignatureHTML(String value) { this.EmailSignatureHTML = value; return this; } public String getEmailSignatureText() { return EmailSignatureText; } public ContactDetailModel setEmailSignatureText(String value) { this.EmailSignatureText = value; return this; } public String getApiFrameworkAlternateKey() { return ApiFrameworkAlternateKey; } public ContactDetailModel setApiFrameworkAlternateKey(String value) { this.ApiFrameworkAlternateKey = value; return this; } } }