/* Options: Date: 2024-05-17 11:31:36 SwiftVersion: 5.0 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetCustomCategoriesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/club/custom-category", "GET") public class GetCustomCategoriesRequest : GetCustomCategoriesRequestDto, IReturn, IRestrictedApiRequest { public typealias Return = GetCustomCategoriesResponse /** * Api Key - grants access to resources */ // @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query") public var apiKey:String /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query") public var chainId:Int? /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="StoreId", ParameterType="query") public var storeId:Int? public var restrictedId:Int? public var restrictedResourceType:RestrictedResourceType required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case apiKey case chainId case storeId case restrictedId case restrictedResourceType } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) apiKey = try container.decodeIfPresent(String.self, forKey: .apiKey) chainId = try container.decodeIfPresent(Int.self, forKey: .chainId) storeId = try container.decodeIfPresent(Int.self, forKey: .storeId) restrictedId = try container.decodeIfPresent(Int.self, forKey: .restrictedId) restrictedResourceType = try container.decodeIfPresent(RestrictedResourceType.self, forKey: .restrictedResourceType) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if apiKey != nil { try container.encode(apiKey, forKey: .apiKey) } if chainId != nil { try container.encode(chainId, forKey: .chainId) } if storeId != nil { try container.encode(storeId, forKey: .storeId) } if restrictedId != nil { try container.encode(restrictedId, forKey: .restrictedId) } if restrictedResourceType != nil { try container.encode(restrictedResourceType, forKey: .restrictedResourceType) } } } public class GetCustomCategoriesResponse : GetCustomCategoriesResponseDto { public var customCategories:[CustomCategoryInfo] = [] public var success:Bool public var message:String required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case customCategories case success case message } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) customCategories = try container.decodeIfPresent([CustomCategoryInfo].self, forKey: .customCategories) ?? [] success = try container.decodeIfPresent(Bool.self, forKey: .success) message = try container.decodeIfPresent(String.self, forKey: .message) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if customCategories.count > 0 { try container.encode(customCategories, forKey: .customCategories) } if success != nil { try container.encode(success, forKey: .success) } if message != nil { try container.encode(message, forKey: .message) } } } public enum RestrictedResourceType : String, Codable { case Store case Chain case User case Undefined } public protocol IRestrictedApiRequest : IApiKeyEndpoint { var restrictedId:Int? { get set } var restrictedResourceType:RestrictedResourceType { get set } } public protocol IApiKeyEndpoint { var apiKey:String { get set } } public class ApiDtoBase : Codable { public var apiKey:String public var storeId:Int? public var chainId:Int? required public init(){} } public class GetCustomCategoriesRequestDto : ApiDtoBase { public var customCategoryId:Int required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case customCategoryId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) customCategoryId = try container.decodeIfPresent(Int.self, forKey: .customCategoryId) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if customCategoryId != nil { try container.encode(customCategoryId, forKey: .customCategoryId) } } } public class ApiGenericType : Codable { public var id:Int public var name:String public var storeId:Int? public var chainId:Int? required public init(){} } public class CustomCategoryInfo : ApiGenericType { public var itemCount:Int required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case itemCount } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) itemCount = try container.decodeIfPresent(Int.self, forKey: .itemCount) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if itemCount != nil { try container.encode(itemCount, forKey: .itemCount) } } } public class GetCustomCategoriesResponseDto : ApiResponseBase { public var customCategories:[CustomCategoryInfo] = [] required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case customCategories } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) customCategories = try container.decodeIfPresent([CustomCategoryInfo].self, forKey: .customCategories) ?? [] } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if customCategories.count > 0 { try container.encode(customCategories, forKey: .customCategories) } } } public class ApiResponseBase : Codable { public var success:Bool public var message:String required public init(){} }