/* Options: Date: 2024-05-15 18:50:24 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomCategoriesRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; enum RestrictedResourceType { Store, Chain, User, Undefined, } abstract class IRestrictedApiRequest extends IApiKeyEndpoint { int? RestrictedId; RestrictedResourceType? RestrictedResourceType; } abstract class IApiKeyEndpoint { String? ApiKey; } class ApiDtoBase implements IConvertible { String? ApiKey; int? StoreId; int? ChainId; ApiDtoBase({this.ApiKey,this.StoreId,this.ChainId}); ApiDtoBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ApiKey = json['ApiKey']; StoreId = json['StoreId']; ChainId = json['ChainId']; return this; } Map toJson() => { 'ApiKey': ApiKey, 'StoreId': StoreId, 'ChainId': ChainId }; getTypeName() => "ApiDtoBase"; TypeContext? context = _ctx; } class GetCustomCategoriesRequestDto extends ApiDtoBase implements IConvertible { int? CustomCategoryId; GetCustomCategoriesRequestDto({this.CustomCategoryId}); GetCustomCategoriesRequestDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CustomCategoryId = json['CustomCategoryId']; return this; } Map toJson() => super.toJson()..addAll({ 'CustomCategoryId': CustomCategoryId }); getTypeName() => "GetCustomCategoriesRequestDto"; TypeContext? context = _ctx; } class ApiGenericType implements IConvertible { int? Id; String? Name; int? StoreId; int? ChainId; ApiGenericType({this.Id,this.Name,this.StoreId,this.ChainId}); ApiGenericType.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Name = json['Name']; StoreId = json['StoreId']; ChainId = json['ChainId']; return this; } Map toJson() => { 'Id': Id, 'Name': Name, 'StoreId': StoreId, 'ChainId': ChainId }; getTypeName() => "ApiGenericType"; TypeContext? context = _ctx; } class CustomCategoryInfo extends ApiGenericType implements IConvertible { int? ItemCount; CustomCategoryInfo({this.ItemCount}); CustomCategoryInfo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ItemCount = json['ItemCount']; return this; } Map toJson() => super.toJson()..addAll({ 'ItemCount': ItemCount }); getTypeName() => "CustomCategoryInfo"; TypeContext? context = _ctx; } class ApiResponseBase implements IConvertible { bool? Success; String? Message; ApiResponseBase({this.Success,this.Message}); ApiResponseBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Message = json['Message']; return this; } Map toJson() => { 'Success': Success, 'Message': Message }; getTypeName() => "ApiResponseBase"; TypeContext? context = _ctx; } class GetCustomCategoriesResponseDto extends ApiResponseBase implements IConvertible { List? CustomCategories; GetCustomCategoriesResponseDto({this.CustomCategories}); GetCustomCategoriesResponseDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CustomCategories = JsonConverters.fromJson(json['CustomCategories'],'List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'CustomCategories': JsonConverters.toJson(CustomCategories,'List',context!) }); getTypeName() => "GetCustomCategoriesResponseDto"; TypeContext? context = _ctx; } class GetCustomCategoriesResponse extends GetCustomCategoriesResponseDto implements IConvertible { List? CustomCategories; bool? Success; String? Message; GetCustomCategoriesResponse({this.CustomCategories,this.Success,this.Message}); GetCustomCategoriesResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); CustomCategories = JsonConverters.fromJson(json['CustomCategories'],'List',context!); Success = json['Success']; Message = json['Message']; return this; } Map toJson() => super.toJson()..addAll({ 'CustomCategories': JsonConverters.toJson(CustomCategories,'List',context!), 'Success': Success, 'Message': Message }); getTypeName() => "GetCustomCategoriesResponse"; TypeContext? context = _ctx; } // @Route("/club/custom-category", "GET") class GetCustomCategoriesRequest extends GetCustomCategoriesRequestDto implements IReturn, IRestrictedApiRequest, IConvertible { /** * Api Key - grants access to resources */ // @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query") String? ApiKey; /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query") int? ChainId; /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="StoreId", ParameterType="query") int? StoreId; int? RestrictedId; RestrictedResourceType? RestrictedResourceType; GetCustomCategoriesRequest({this.ApiKey,this.ChainId,this.StoreId,this.RestrictedId,this.RestrictedResourceType}); GetCustomCategoriesRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ApiKey = json['ApiKey']; ChainId = json['ChainId']; StoreId = json['StoreId']; RestrictedId = json['RestrictedId']; RestrictedResourceType = JsonConverters.fromJson(json['RestrictedResourceType'],'RestrictedResourceType',context!); return this; } Map toJson() => super.toJson()..addAll({ 'ApiKey': ApiKey, 'ChainId': ChainId, 'StoreId': StoreId, 'RestrictedId': RestrictedId, 'RestrictedResourceType': JsonConverters.toJson(RestrictedResourceType,'RestrictedResourceType',context!) }); createResponse() => GetCustomCategoriesResponse(); getResponseTypeName() => "GetCustomCategoriesResponse"; getTypeName() => "GetCustomCategoriesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.clubready.com', types: { 'RestrictedResourceType': TypeInfo(TypeOf.Enum, enumValues:RestrictedResourceType.values), 'IRestrictedApiRequest': TypeInfo(TypeOf.Interface), 'IApiKeyEndpoint': TypeInfo(TypeOf.Interface), 'ApiDtoBase': TypeInfo(TypeOf.Class, create:() => ApiDtoBase()), 'GetCustomCategoriesRequestDto': TypeInfo(TypeOf.Class, create:() => GetCustomCategoriesRequestDto()), 'ApiGenericType': TypeInfo(TypeOf.Class, create:() => ApiGenericType()), 'CustomCategoryInfo': TypeInfo(TypeOf.Class, create:() => CustomCategoryInfo()), 'ApiResponseBase': TypeInfo(TypeOf.Class, create:() => ApiResponseBase()), 'GetCustomCategoriesResponseDto': TypeInfo(TypeOf.Class, create:() => GetCustomCategoriesResponseDto()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetCustomCategoriesResponse': TypeInfo(TypeOf.Class, create:() => GetCustomCategoriesResponse()), 'GetCustomCategoriesRequest': TypeInfo(TypeOf.Class, create:() => GetCustomCategoriesRequest()), });