import Foundation
import ServiceStack
public class LicensesAutoQueryEdit : Licenses, IUpdateDb<Licenses>
{
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)
}
}
public class Licenses : Codable
{
// @DataMember(Order=1)
// @Required()
public var id:Int?
// @DataMember(Order=2)
// @Required()
// @References(typeof(AppUser))
public var appUserId:Int?
// @DataMember(Order=3)
// @Required()
public var fromDate:Date?
// @DataMember(Order=4)
// @Required()
public var toDate:Date?
// @DataMember(Order=5)
// @Required()
public var paidAmount:Double?
// @DataMember(Order=6)
// @Required()
public var paidDate:Date?
required public init(){}
}
Swift LicensesAutoQueryEdit DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/LicensesAutoQueryEdit HTTP/1.1
Host: api-stage.smartfarmertech.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"appUserId":0,"fromDate":"\/Date(-62135596800000-0000)\/","toDate":"\/Date(-62135596800000-0000)\/","paidAmount":0,"paidDate":"\/Date(-62135596800000-0000)\/"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"id":0,"appUserId":0,"fromDate":"\/Date(-62135596800000-0000)\/","toDate":"\/Date(-62135596800000-0000)\/","paidAmount":0,"paidDate":"\/Date(-62135596800000-0000)\/"}