Portal

<back to all web services

AddSupplierAddress

The following routes are available for this service:
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(){}
}


Swift AddSupplierAddress DTOs

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

HTTP + CSV

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: text/csv
Content-Type: text/csv
Content-Length: length

{"SupplierId":0,"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"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Id":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}