/* Options: Date: 2024-05-15 08:43:20 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.clubready.com/api/current //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomCategoryItemsRequest.* //ExcludeTypes: //DefaultImports: */ export enum RestrictedResourceType { Store = 'Store', Chain = 'Chain', User = 'User', Undefined = 'Undefined', } export interface IRestrictedApiRequest extends IApiKeyEndpoint { RestrictedId?: number; RestrictedResourceType: RestrictedResourceType; } export interface IApiKeyEndpoint { ApiKey: string; } export class ApiDtoBase { public ApiKey: string; public StoreId?: number; public ChainId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetCustomCategoriesRequestDto extends ApiDtoBase { public CustomCategoryId: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class ApiGenericType { public Id: number; public Name: string; public StoreId?: number; public ChainId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ApiResponseBase { public Success: boolean; public Message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetCustomCategoryItemsResposeDto extends ApiResponseBase { public CategoryItems: ApiGenericType[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class GetCustomCategoryItemsResponse extends GetCustomCategoryItemsResposeDto { public CategoryItems: ApiGenericType[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/club/custom-category/items", "GET") export class GetCustomCategoryItemsRequest extends GetCustomCategoriesRequestDto implements IReturn, IRestrictedApiRequest { /** * Api Key - grants access to resources */ // @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query") public ApiKey: string; /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query") public ChainId?: number; /** * Either StoreId or ChainId is required */ // @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="StoreId", ParameterType="query") public StoreId?: number; /** * Custom Category ID */ // @ApiMember(DataType="integer", Description="Custom Category ID", IsRequired=true, Name="CustomCategoryId", ParameterType="query") public CustomCategoryId: number; public RestrictedId?: number; public RestrictedResourceType: RestrictedResourceType; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetCustomCategoryItemsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetCustomCategoryItemsResponse(); } }