GET | /club/guest-pass/types | Guest passes available at location. |
---|
export class ApiDtoBase
{
public ApiKey: string;
public StoreId?: number;
public ChainId?: number;
public constructor(init?: Partial<ApiDtoBase>) { (Object as any).assign(this, init); }
}
export class GetGuestPassTypesRequestDto extends ApiDtoBase
{
public constructor(init?: Partial<GetGuestPassTypesRequestDto>) { super(init); (Object as any).assign(this, init); }
}
export enum RestrictedResourceType
{
Store = 'Store',
Chain = 'Chain',
User = 'User',
Undefined = 'Undefined',
}
export class GetGuestPassTypesRequest extends GetGuestPassTypesRequestDto implements 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="StoreId", ParameterType="query")
public StoreId?: number;
/**
* Either StoreId or ChainId is required
*/
// @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query")
public ChainId?: number;
public RestrictedId?: number;
public RestrictedResourceType: RestrictedResourceType;
public constructor(init?: Partial<GetGuestPassTypesRequest>) { super(init); (Object as any).assign(this, init); }
}
export class ApiResponseBase
{
public Success: boolean;
public Message: string;
public constructor(init?: Partial<ApiResponseBase>) { (Object as any).assign(this, init); }
}
export class GuestPassTypeDto
{
public GuestPassTypeId: number;
public ChainId?: number;
public StoreId?: number;
public PassName: string;
public DurationDays: number;
public ExpirationEditable: boolean;
public MaxDurationDays: number;
public AutoActivateWhenIssued: boolean;
public IssueBarcodeWhenActivated: boolean;
public TagWhenActivated: string;
public MaxIssuedCount: number;
public IsDeleted: boolean;
public InactiveCount: number;
public ActiveCount: number;
public ExpiredCount: number;
public TotalCount: number;
public constructor(init?: Partial<GuestPassTypeDto>) { (Object as any).assign(this, init); }
}
export class GetGuestPassTypesResponseDto extends ApiResponseBase
{
public GuestPassTypes: GuestPassTypeDto[];
public constructor(init?: Partial<GetGuestPassTypesResponseDto>) { super(init); (Object as any).assign(this, init); }
}
export class GetGuestPassTypesResponse extends GetGuestPassTypesResponseDto
{
public GuestPassTypes: GuestPassTypeDto[];
public constructor(init?: Partial<GetGuestPassTypesResponse>) { super(init); (Object as any).assign(this, init); }
}
TypeScript GetGuestPassTypesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /club/guest-pass/types HTTP/1.1 Host: clubready.com Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"GuestPassTypes":[{"GuestPassTypeId":0,"ChainId":0,"StoreId":0,"PassName":"String","DurationDays":0,"ExpirationEditable":false,"MaxDurationDays":0,"AutoActivateWhenIssued":false,"IssueBarcodeWhenActivated":false,"TagWhenActivated":"String","MaxIssuedCount":0,"IsDeleted":false,"InactiveCount":0,"ActiveCount":0,"ExpiredCount":0,"TotalCount":0}],"Success":false,"Message":"String"}