import Foundation
import ServiceStack
// @DataContract
public class PostAppleServicesSettingsRequest : V2BaseRequest
{
// @DataMember(Name="username")
public var username:String
// @DataMember(Name="userEmail")
public var userEmail:String
// @DataMember(Name="password")
public var password:String
// @DataMember(Name="apiKey")
public var apiKey:String
// @DataMember(Name="publisherId")
public var publisherId:String
// @DataMember(Name="userApiResponseJsonString")
public var userApiResponseJsonString:String
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case username
case userEmail
case password
case apiKey
case publisherId
case userApiResponseJsonString
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
username = try container.decodeIfPresent(String.self, forKey: .username)
userEmail = try container.decodeIfPresent(String.self, forKey: .userEmail)
password = try container.decodeIfPresent(String.self, forKey: .password)
apiKey = try container.decodeIfPresent(String.self, forKey: .apiKey)
publisherId = try container.decodeIfPresent(String.self, forKey: .publisherId)
userApiResponseJsonString = try container.decodeIfPresent(String.self, forKey: .userApiResponseJsonString)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if username != nil { try container.encode(username, forKey: .username) }
if userEmail != nil { try container.encode(userEmail, forKey: .userEmail) }
if password != nil { try container.encode(password, forKey: .password) }
if apiKey != nil { try container.encode(apiKey, forKey: .apiKey) }
if publisherId != nil { try container.encode(publisherId, forKey: .publisherId) }
if userApiResponseJsonString != nil { try container.encode(userApiResponseJsonString, forKey: .userApiResponseJsonString) }
}
}
// @DataContract
public class V2BaseRequest : Codable
{
required public init(){}
}
// @DataContract
public class PostAppleServicesSettingsResponse : V2BaseResponse
{
required public init(){ super.init() }
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
}
}
// @DataContract
public class V2BaseResponse : Codable
{
// @DataMember(Name="responseStatus")
public var responseStatus:ResponseStatus
required public init(){}
}
Swift PostAppleServicesSettingsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/PostAppleServicesSettingsRequest HTTP/1.1
Host: api.booklinker.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
username: String,
userEmail: String,
password: String,
apiKey: String,
publisherId: String,
userApiResponseJsonString: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}