/* Options: Date: 2025-09-14 06:46:49 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SaveContact.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Inserts or Updates a contact and its details and roles. */ // @Api(Description="Inserts or Updates a contact and its details and roles.") public class SaveContact : ValidationErrorList, IReturn, ISubscription { public typealias Return = ResponseStatus /** * Guid representing the external systems datasource information. */ // @ApiMember(DataType="Guid", Description="Guid representing the external systems datasource information.", IsRequired=true, Name="SuiteDataSourceInstanceId", ParameterType="query") public var suiteDataSourceInstanceId:String? /** * The unique key that represents the contact on the external system. */ // @ApiMember(DataType="string", Description="The unique key that represents the contact on the external system.", IsRequired=true, Name="AlternateKey", ParameterType="query") public var alternateKey:String? /** * Guid of the contact object within Eros. If ObjectId is known, the external system may pass this instead of the alternate key. */ // @ApiMember(DataType="Guid", Description="Guid of the contact object within Eros. If ObjectId is known, the external system may pass this instead of the alternate key.", Name="ObjectId", ParameterType="query") public var objectId:String? /** * If set to true, the object will be updated/refreshed. If false, the hash representation of the Contact model and its data will be compared with the current Contact to determine if there are any changes to save. */ // @ApiMember(DataType="bool", Description="If set to true, the object will be updated/refreshed. If false, the hash representation of the Contact model and its data will be compared with the current Contact to determine if there are any changes to save.", Name="IgnoreHash") public var ignoreHash:Bool? public var ignoreValidation:Bool? /** * Set this to be true if the contact is to be deleted */ // @ApiMember(DataType="bool", Description="Set this to be true if the contact is to be deleted", Name="MarkAsDeleted", ParameterType="query") public var markAsDeleted:Bool? /** * Object containing all details of the contact to be inserted or updated. */ // @ApiMember(DataType="SubscriptionContactModel", Description="Object containing all details of the contact to be inserted or updated.", IsRequired=true, Name="Contact", ParameterType="query") public var contact:SubscriptionContactModel? public var licenseeId:String? public var sessionId:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case suiteDataSourceInstanceId case alternateKey case objectId case ignoreHash case ignoreValidation case markAsDeleted case contact case licenseeId case sessionId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) suiteDataSourceInstanceId = try container.decodeIfPresent(String.self, forKey: .suiteDataSourceInstanceId) alternateKey = try container.decodeIfPresent(String.self, forKey: .alternateKey) objectId = try container.decodeIfPresent(String.self, forKey: .objectId) ignoreHash = try container.decodeIfPresent(Bool.self, forKey: .ignoreHash) ignoreValidation = try container.decodeIfPresent(Bool.self, forKey: .ignoreValidation) markAsDeleted = try container.decodeIfPresent(Bool.self, forKey: .markAsDeleted) contact = try container.decodeIfPresent(SubscriptionContactModel.self, forKey: .contact) licenseeId = try container.decodeIfPresent(String.self, forKey: .licenseeId) sessionId = try container.decodeIfPresent(String.self, forKey: .sessionId) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if suiteDataSourceInstanceId != nil { try container.encode(suiteDataSourceInstanceId, forKey: .suiteDataSourceInstanceId) } if alternateKey != nil { try container.encode(alternateKey, forKey: .alternateKey) } if objectId != nil { try container.encode(objectId, forKey: .objectId) } if ignoreHash != nil { try container.encode(ignoreHash, forKey: .ignoreHash) } if ignoreValidation != nil { try container.encode(ignoreValidation, forKey: .ignoreValidation) } if markAsDeleted != nil { try container.encode(markAsDeleted, forKey: .markAsDeleted) } if contact != nil { try container.encode(contact, forKey: .contact) } if licenseeId != nil { try container.encode(licenseeId, forKey: .licenseeId) } if sessionId != nil { try container.encode(sessionId, forKey: .sessionId) } } } public class RuleValidationResult : Codable { public var ruleCode:String? public var message:String? public var key:String? public var tag:String? public var errorCode:String? required public init(){} } public class ValidationErrorList : Codable { public var validationErrors:[RuleValidationResult]? required public init(){} } public protocol ISubscription { var suiteDataSourceInstanceId:String? { get set } var objectId:String? { get set } var alternateKey:String? { get set } var ignoreValidation:Bool? { get set } } public class SubscriptionContactModel : Codable { /** * Guid of the contact object within Eros. */ // @ApiMember(DataType="Guid", Description="Guid of the contact object within Eros.", Name="ContactId", ParameterType="query") public var contactId:String? /** * Guid of the Contact Type List Item object within Eros. */ // @ApiMember(DataType="Guid", Description="Guid of the Contact Type List Item object within Eros.", IsRequired=true, Name="ContactType", ParameterType="query") public var contactType:String? /** * Guid of the Marital Status List Item object within Eros. */ // @ApiMember(DataType="Guid?", Description="Guid of the Marital Status List Item object within Eros.", Name="MaritalStatus", ParameterType="query") public var maritalStatus:String? /** * Guid of the Gender List Item object within Eros. */ // @ApiMember(DataType="Guid?", Description="Guid of the Gender List Item object within Eros.", Name="Gender", ParameterType="query") public var gender:String? /** * The first given name for the contact. Applies to a person contact type. */ // @ApiMember(DataType="string", Description="The first given name for the contact. Applies to a person contact type.", Name="FirstName", ParameterType="query") public var firstName:String? /** * The middle name(s) for the contact. Applies to a person contact type. */ // @ApiMember(DataType="string", Description="The middle name(s) for the contact. Applies to a person contact type.", Name="MiddleName", ParameterType="query") public var middleName:String? /** * The surname for the contact. Applies to a person contact type. */ // @ApiMember(DataType="string", Description="The surname for the contact. Applies to a person contact type.", Name="Surname", ParameterType="query") public var surname:String? /** * The full name for the contact. */ // @ApiMember(DataType="string", Description="The full name for the contact.", Name="FullName", ParameterType="query") public var fullName:String? /** * A short name for the contact. */ // @ApiMember(DataType="string", Description="A short name for the contact.", Name="ShortName", ParameterType="query") public var shortName:String? /** * The birth date for the contact. Applies to a person contact type. */ // @ApiMember(DataType="DateTime?", Description="The birth date for the contact. Applies to a person contact type.", Name="BirthDate", ParameterType="query") public var birthDate:Date? /** * The title for the contact. Applies to a person contact type. */ // @ApiMember(DataType="string", Description="The title for the contact. Applies to a person contact type.", Name="Title", ParameterType="query") public var title:String? /** * A salutation for the contact. */ // @ApiMember(DataType="string", Description="A salutation for the contact.", Name="Salutation", ParameterType="query") public var salutation:String? /** * The A.B.N for the contact. */ // @ApiMember(DataType="string", Description="The A.B.N for the contact.", Name="Abn", ParameterType="query") public var abn:String? /** * The A.C.N for the contact. */ // @ApiMember(DataType="string", Description="The A.C.N for the contact.", Name="Acn", ParameterType="query") public var acn:String? /** * The A.R.B.N for the contact. */ // @ApiMember(DataType="string", Description="The A.R.B.N for the contact.", Name="Arbn", ParameterType="query") public var arbn:String? /** * A trading name for the contact. */ // @ApiMember(DataType="string", Description="A trading name for the contact.", Name="TradingName", ParameterType="query") public var tradingName:String? /** * A legal name for the contact. */ // @ApiMember(DataType="string", Description="A legal name for the contact.", Name="LegalName", ParameterType="query") public var legalName:String? /** * Any notes/description for the contact. */ // @ApiMember(DataType="string", Description="Any notes/description for the contact.", Name="Notes", ParameterType="query") public var notes:String? /** * Contact Employment Industry. */ // @ApiMember(DataType="string", Description="Contact Employment Industry.", Name="EmploymentIndustry", ParameterType="query") public var employmentIndustry:String? /** * Contact Employment Role. */ // @ApiMember(DataType="string", Description="Contact Employment Role.", Name="EmploymentRole", ParameterType="query") public var employmentRole:String? /** * Contact Employment Geographic Area. */ // @ApiMember(DataType="string", Description="Contact Employment Geographic Area.", Name="EmploymentGeographicArea", ParameterType="query") public var employmentGeographicArea:String? /** * The Contacts Drivers Licence Number */ // @ApiMember(DataType="string", Description="The Contacts Drivers Licence Number", Name="DriversLicence", ParameterType="query") public var driversLicence:String? /** * 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 var gstRegistered:Bool? /** * The status of the contact in EROS */ // @ApiMember(DataType="string", Description="The status of the contact in EROS", Name="RecordStatus", ParameterType="query") public var recordStatus:String? /** * A list of roles this contact has. */ // @ApiMember(DataType="List", Description="A list of roles this contact has.", IsRequired=true, Name="ContactRoles", ParameterType="query") public var contactRoles:[ContactRole] = [] /** * A list of the contact details for the contact. */ // @ApiMember(DataType="List", Description="A list of the contact details for the contact.", IsRequired=true, Name="ContactDetails", ParameterType="query") public var contactDetails:[ContactDetailModel] = [] /** * Custom Content XML for the contact. */ // @ApiMember(DataType="string", Description="Custom Content XML for the contact.", Name="CustomContentXML", ParameterType="query") public var customContentXML:String? public var blobImageURLPrimary:String? public var blobImageURLPrimaryThumbnail:String? /** * The primary mobile for the contact. */ // @ApiMember(DataType="string", Description="The primary mobile for the contact.", Name="PrimaryMobile", ParameterType="query") public var primaryMobile:String? /** * The primary email for the contact. */ // @ApiMember(DataType="string", Description="The primary email for the contact.", Name="PrimaryEmail", ParameterType="query") public var primaryEmail:String? required public init(){} } public class ContactRole : Codable { /** * Guid of the Role List Item object within Eros. */ // @ApiMember(DataType="Guid", Description="Guid of the Role List Item object within Eros.", IsRequired=true, Name="RoleId", ParameterType="query") public var roleId:String? /** * The unique key that represents the role type on the external system. */ // @ApiMember(DataType="string", Description="The unique key that represents the role type on the external system.", Name="AlternateKey", ParameterType="query") public var alternateKey:String? required public init(){} } public class ContactDetailModel : Codable { public var contactMethodId:String? public var contactMethodName:String? public var contactAddress:ContactAddressModel? public var contactPhone:PhoneModel? public var countryId:String? public var contactDetails:String? public var notes:String? public var contactDetailsCode:String? public var orderContactMethod:Int? public var isPrimaryContactMethod:Bool? public var isAddress:Bool? required public init(){} } public class AddressModel : Codable { /** * The distance between this project and another specified set of gps coordinates. */ // @ApiMember(DataType="double", Description="The distance between this project and another specified set of gps coordinates.", Name="DistanceAway", ParameterType="query") public var distanceAway:Double? /** * The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface. */ // @ApiMember(DataType="Double?", Description="The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.", IsRequired=true, Name="Latitude", ParameterType="query") public var latitude:Double? /** * The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface. */ // @ApiMember(DataType="Double?", Description="The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.", IsRequired=true, Name="Longitude", ParameterType="query") public var longitude:Double? /** * Address Format Id Guid - this will be determined by the service. */ // @ApiMember(DataType="Guid", Description="Address Format Id Guid - this will be determined by the service.", Name="AddressFormatId", ParameterType="query") public var addressFormatId:String? /** * Suburb Id Guid - this will attempt to be determined by the SuburbName, StateShortName and Postcode entered. */ // @ApiMember(DataType="Guid", Description="Suburb Id Guid - this will attempt to be determined by the SuburbName, StateShortName and Postcode entered.", Name="SuburbId", ParameterType="query") public var suburbId:String? /** * The suburb name. */ // @ApiMember(DataType="string", Description="The suburb name.", Name="SuburbName", ParameterType="query") public var suburbName:String? /** * The shortened State Name e.g Vic for Victoria. */ // @ApiMember(DataType="string", Description="The shortened State Name e.g Vic for Victoria.", Name="StateShortName", ParameterType="query") public var stateShortName:String? /** * The suburb postcode. */ // @ApiMember(DataType="string", Description="The suburb postcode.", Name="PostCode", ParameterType="query") public var postCode:String? /** * Country Id Guid - this will be determined by the CountrName or ISOCountryCode entered. */ // @ApiMember(DataType="Guid", Description="Country Id Guid - this will be determined by the CountrName or ISOCountryCode entered.", Name="CountryId", ParameterType="query") public var countryId:String? /** * the name of the country the address is within. */ // @ApiMember(DataType="string", Description="the name of the country the address is within.", Name="CountryName", ParameterType="query") public var countryName:String? /** * A 2 digit ISO Country Code representing the country. */ // @ApiMember(DataType="string", Description="A 2 digit ISO Country Code representing the country.", Name="ISOCountryCode", ParameterType="query") public var isoCountryCode:String? /** * The address Lot number. */ // @ApiMember(DataType="string", Description="The address Lot number.", Name="LotNumber", ParameterType="query") public var lotNumber:String? /** * The address Sub Unit number. */ // @ApiMember(DataType="string", Description="The address Sub Unit number.", Name="SubUnit", ParameterType="query") public var subUnit:String? /** * The address building number. */ // @ApiMember(DataType="string", Description="The address building number.", Name="BuildingNumber", ParameterType="query") public var buildingNumber:String? /** * The address street number. */ // @ApiMember(DataType="string", Description="The address street number.", Name="StreetNumber", ParameterType="query") public var streetNumber:String? /** * The address street name including street type. */ // @ApiMember(DataType="string", Description="The address street name including street type.", Name="StreetName", ParameterType="query") public var streetName:String? /** * A formatted address Line 1. */ // @ApiMember(DataType="string", Description="A formatted address Line 1.", Name="AddressLineOne", ParameterType="query") public var addressLineOne:String? /** * A formatted address Line 2. */ // @ApiMember(DataType="string", Description="A formatted address Line 2.", Name="AddressLineTwo", ParameterType="query") public var addressLineTwo:String? /** * The full address string. */ // @ApiMember(DataType="string", Description="The full address string.", Name="AddressFull", ParameterType="query") public var addressFull:String? /** * True if the address is a physical location. */ // @ApiMember(DataType="bool?", Description="True if the address is a physical location.", Name="IsPhysical", ParameterType="query") public var isPhysical:Bool? /** * Notes about the address. */ // @ApiMember(DataType="string", Description="Notes about the address.", Name="Notes", ParameterType="query") public var notes:String? /** * If true, the address is eligible for having its coordinates calculated/updated. */ // @ApiMember(DataType="bool?", Description="If true, the address is eligible for having its coordinates calculated/updated.", Name="AutoMapCoordinates", ParameterType="query") public var autoMapCoordinates:Bool? /** * Location Coordinates for the address. */ // @ApiMember(DataType="LocationCoordinates", Description="Location Coordinates for the address.", Name="LocationCoordinates", ParameterType="query") public var locationCoordinates:LocationCoordinatesModel? required public init(){} } public class ContactAddressModel : Codable { public var address:AddressModel? public var isPostal:Bool? public var isPrimaryLocation:Bool? public var isRegisteredLocation:Bool? public var suburbName:String? public var stateName:String? public var countryName:String? required public init(){} } public class PhoneModel : Codable { public var countryCode:String? public var areaCode:String? public var localNumber:String? required public init(){} } public class LocationCoordinatesModel : Codable { /** * The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface. */ // @ApiMember(DataType="Double?", Description="The latitude of an address - geographic coordinates specifying the north-south position of a point on the Earth's surface.", IsRequired=true, Name="Latitude", ParameterType="query") public var latitude:Double? /** * The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface. */ // @ApiMember(DataType="Double?", Description="The longitude of an address - geographic coordinates specifying the east-west position of a point on the Earth's surface.", IsRequired=true, Name="Longitude", ParameterType="query") public var longitude:Double? /** * The altitude of an address - the altitude above sea level. */ // @ApiMember(DataType="Double?", Description="The altitude of an address - the altitude above sea level.", Name="Altitude", ParameterType="query") public var altitude:Double? /** * Accuracy of the latitude and longitude. */ // @ApiMember(DataType="Double?", Description="Accuracy of the latitude and longitude.", Name="Accuracy", ParameterType="query") public var accuracy:Double? /** * Accurancy of the Altitude. */ // @ApiMember(DataType="Double?", Description="Accurancy of the Altitude.", Name="AltitudeAccuracy", ParameterType="query") public var altitudeAccuracy:Double? /** * Direction you are heading. */ // @ApiMember(DataType="Double?", Description="Direction you are heading.", Name="Heading", ParameterType="query") public var heading:Double? /** * Speed you are going. */ // @ApiMember(DataType="Double?", Description="Speed you are going.", Name="Speed", ParameterType="query") public var speed:Double? /** * Speed your altitude is ascending/descending at. */ // @ApiMember(DataType="Double?", Description="Speed your altitude is ascending/descending at.", Name="VerticalSpeed", ParameterType="query") public var verticalSpeed:Double? required public init(){} }