Portal

<back to all web services

BrowseAllSupplierAddress

The following routes are available for this service:
GET/supplier/{supplierid}/address
import Foundation
import ServiceStack

public class BrowseAllSupplierAddress : IGet, Codable
{
    public var supplierId:Int

    required public init(){}
}

public class BrowseAllSupplierAddressResponse : ResponseBase
{
    public var supplierAddresses:[SupplierAddressSimple] = []

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case supplierAddresses
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        supplierAddresses = try container.decodeIfPresent([SupplierAddressSimple].self, forKey: .supplierAddresses) ?? []
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if supplierAddresses.count > 0 { try container.encode(supplierAddresses, forKey: .supplierAddresses) }
    }
}

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 BrowseAllSupplierAddress DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /supplier/{supplierid}/address HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"SupplierAddresses":[{"Id":0,"CountryCode":"String","CountryName":"String","CountryId":0,"AddressType":0,"ZipCode":"String","City":"String","Address":"String","StreetAddress":"String","StreetType":"String","HouseNumber":"String","Building":"String","Staircase":"String","Floor":"String","Door":"String","POB":"String","Other":"String","ConcurrencyStamp":"String"}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}