GET | /supplier/{supplierid}/address/{supplieraddressid} |
---|
import Foundation
import ServiceStack
public class BrowseSupplierAddress : IGet, Codable
{
public var supplierId:Int
public var supplierAddressId:Int
required public init(){}
}
public class BrowseSupplierAddressResponse : ResponseBase
{
public var supplierAddress:SupplierAddressSimple
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case supplierAddress
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
supplierAddress = try container.decodeIfPresent(SupplierAddressSimple.self, forKey: .supplierAddress)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if supplierAddress != nil { try container.encode(supplierAddress, forKey: .supplierAddress) }
}
}
public class ResponseBase : Codable
{
public var responseStatus:ResponseStatus
required public init(){}
}
public class SupplierAddressSimple : SupplierAddressBase
{
public var id:Int
public var countryCode:String
public var countryName:String
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case id
case countryCode
case countryName
}
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)
countryCode = try container.decodeIfPresent(String.self, forKey: .countryCode)
countryName = try container.decodeIfPresent(String.self, forKey: .countryName)
}
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) }
if countryCode != nil { try container.encode(countryCode, forKey: .countryCode) }
if countryName != nil { try container.encode(countryName, forKey: .countryName) }
}
}
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
}
Swift BrowseSupplierAddress DTOs
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.
GET /supplier/{supplierid}/address/{supplieraddressid} HTTP/1.1 Host: szallitoiportal-be.veolia.hu Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <BrowseSupplierAddressResponse 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> <SupplierAddress> <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> <CountryCode>String</CountryCode> <CountryName>String</CountryName> <Id>0</Id> </SupplierAddress> </BrowseSupplierAddressResponse>