POST | /supplier/{supplierid}/address |
---|
import Foundation
import ServiceStack
public class AddSupplierAddress : SupplierAddressBase, IPost
{
public var supplierId:Int
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case supplierId
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
supplierId = try container.decodeIfPresent(Int.self, forKey: .supplierId)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if supplierId != nil { try container.encode(supplierId, forKey: .supplierId) }
}
}
public class SupplierAddressBase : ModifyRequestBase
{
public var countryId:Int
public var addressType:AddressType
public var zipCode:String
public var city:String
public var address:String
public var streetAddress:String
public var streetType:String
public var houseNumber:String
public var building:String
public var staircase:String
public var floor:String
public var door:String
public var pob:String
public var other:String
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case countryId
case addressType
case zipCode
case city
case address
case streetAddress
case streetType
case houseNumber
case building
case staircase
case floor
case door
case pob
case other
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
countryId = try container.decodeIfPresent(Int.self, forKey: .countryId)
addressType = try container.decodeIfPresent(AddressType.self, forKey: .addressType)
zipCode = try container.decodeIfPresent(String.self, forKey: .zipCode)
city = try container.decodeIfPresent(String.self, forKey: .city)
address = try container.decodeIfPresent(String.self, forKey: .address)
streetAddress = try container.decodeIfPresent(String.self, forKey: .streetAddress)
streetType = try container.decodeIfPresent(String.self, forKey: .streetType)
houseNumber = try container.decodeIfPresent(String.self, forKey: .houseNumber)
building = try container.decodeIfPresent(String.self, forKey: .building)
staircase = try container.decodeIfPresent(String.self, forKey: .staircase)
floor = try container.decodeIfPresent(String.self, forKey: .floor)
door = try container.decodeIfPresent(String.self, forKey: .door)
pob = try container.decodeIfPresent(String.self, forKey: .pob)
other = try container.decodeIfPresent(String.self, forKey: .other)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if countryId != nil { try container.encode(countryId, forKey: .countryId) }
if addressType != nil { try container.encode(addressType, forKey: .addressType) }
if zipCode != nil { try container.encode(zipCode, forKey: .zipCode) }
if city != nil { try container.encode(city, forKey: .city) }
if address != nil { try container.encode(address, forKey: .address) }
if streetAddress != nil { try container.encode(streetAddress, forKey: .streetAddress) }
if streetType != nil { try container.encode(streetType, forKey: .streetType) }
if houseNumber != nil { try container.encode(houseNumber, forKey: .houseNumber) }
if building != nil { try container.encode(building, forKey: .building) }
if staircase != nil { try container.encode(staircase, forKey: .staircase) }
if floor != nil { try container.encode(floor, forKey: .floor) }
if door != nil { try container.encode(door, forKey: .door) }
if pob != nil { try container.encode(pob, forKey: .pob) }
if other != nil { try container.encode(other, forKey: .other) }
}
}
public class ModifyRequestBase : IConcurrencyStamp, Codable
{
public var concurrencyStamp:String
required public init(){}
}
public enum AddressType : Int, Codable
{
case Postal = 0
case HeadQuarters = 1
case Site = 2
}
public class ModifyEntityResponse : ResponseBase
{
public var id:Int
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case id
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(Int.self, forKey: .id)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if id != nil { try container.encode(id, forKey: .id) }
}
}
public class ResponseBase : Codable
{
public var responseStatus:ResponseStatus
required public init(){}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /supplier/{supplierid}/address HTTP/1.1
Host: szallitoiportal-be.veolia.hu
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<AddSupplierAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Portal.ServiceDto">
<ConcurrencyStamp>String</ConcurrencyStamp>
<Address>String</Address>
<AddressType>Postal</AddressType>
<Building>String</Building>
<City>String</City>
<CountryId>0</CountryId>
<Door>String</Door>
<Floor>String</Floor>
<HouseNumber>String</HouseNumber>
<Other>String</Other>
<POB>String</POB>
<Staircase>String</Staircase>
<StreetAddress>String</StreetAddress>
<StreetType>String</StreetType>
<ZipCode>String</ZipCode>
<SupplierId>0</SupplierId>
</AddSupplierAddress>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ModifyEntityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Portal.ServiceDto"> <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types"> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:Message>String</d2p1:Message> <d2p1:StackTrace>String</d2p1:StackTrace> <d2p1:Errors> <d2p1:ResponseError> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:FieldName>String</d2p1:FieldName> <d2p1:Message>String</d2p1:Message> <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </d2p1:Meta> </d2p1:ResponseError> </d2p1:Errors> <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Meta> </ResponseStatus> <Id>0</Id> </ModifyEntityResponse>