/* Options: Date: 2025-12-06 06:06:33 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: NoticeAgreementRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/noticeAgreement/{AgentId}", "GET,POST,OPTIONS") // @Route("/v1/noticeAgreement/{AgentId}/{Status}", "PUT,OPTIONS") public class NoticeAgreementRequest : IReturn, Codable { public typealias Return = NoticeAgreementResponse public var agentId:Int? public var status:String? required public init(){} } public class NoticeAgreementResponse : Codable { public var responseStatus:ResponseStatus? public var agentAgreement:NoticeAgreement? required public init(){} } public class NoticeAgreement : Codable { public var id:Int? public var agentId:Int? public var agentName:String? public var status:String? public var signedDate:Date? public var firstViewed:Date? public var snoozedDate:Date? required public init(){} }