POST | /scheduling/{UserId}/cancel-wait-list | Cancel a wait list record. |
---|
import 'package:servicestack/servicestack.dart';
enum RestrictedResourceType
{
Store,
Chain,
User,
Undefined,
}
class CancelWaitListRequest implements 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;
/**
* Store ID or Chain ID is required
*/
// @ApiMember(DataType="integer", Description="Store ID or Chain ID is required", Name="StoreId", ParameterType="query")
int? StoreId;
/**
* Store ID or Chain ID is required
*/
// @ApiMember(DataType="integer", Description="Store ID or Chain ID is required", Name="ChainId", ParameterType="query")
int? ChainId;
/**
* ClubReady User ID
*/
// @ApiMember(DataType="integer", Description="ClubReady User ID", IsRequired=true, Name="UserId", ParameterType="path")
int? UserId;
/**
* Class Schedule ID
*/
// @ApiMember(DataType="integer", Description="Class Schedule ID", IsRequired=true, Name="ClassScheduleId", ParameterType="query")
int? ClassScheduleId;
int? RestrictedId;
RestrictedResourceType? RestrictedResourceType;
CancelWaitListRequest({this.ApiKey,this.StoreId,this.ChainId,this.UserId,this.ClassScheduleId,this.RestrictedId,this.RestrictedResourceType});
CancelWaitListRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ApiKey = json['ApiKey'];
StoreId = json['StoreId'];
ChainId = json['ChainId'];
UserId = json['UserId'];
ClassScheduleId = json['ClassScheduleId'];
RestrictedId = json['RestrictedId'];
RestrictedResourceType = JsonConverters.fromJson(json['RestrictedResourceType'],'RestrictedResourceType',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ApiKey': ApiKey,
'StoreId': StoreId,
'ChainId': ChainId,
'UserId': UserId,
'ClassScheduleId': ClassScheduleId,
'RestrictedId': RestrictedId,
'RestrictedResourceType': JsonConverters.toJson(RestrictedResourceType,'RestrictedResourceType',context!)
};
getTypeName() => "CancelWaitListRequest";
TypeContext? context = _ctx;
}
class CancelWaitListResponse implements IConvertible
{
bool? Success;
String? Message;
CancelWaitListResponse({this.Success,this.Message});
CancelWaitListResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Success = json['Success'];
Message = json['Message'];
return this;
}
Map<String, dynamic> toJson() => {
'Success': Success,
'Message': Message
};
getTypeName() => "CancelWaitListResponse";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'clubready.com', types: <String, TypeInfo> {
'RestrictedResourceType': TypeInfo(TypeOf.Enum, enumValues:RestrictedResourceType.values),
'CancelWaitListRequest': TypeInfo(TypeOf.Class, create:() => CancelWaitListRequest()),
'CancelWaitListResponse': TypeInfo(TypeOf.Class, create:() => CancelWaitListResponse()),
});
Dart CancelWaitListRequest 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.
POST /scheduling/{UserId}/cancel-wait-list HTTP/1.1
Host: clubready.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"ApiKey":"String","StoreId":0,"ChainId":0,"UserId":0,"ClassScheduleId":0,"RestrictedId":0,"RestrictedResourceType":"Chain"}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"Success":false,"Message":"String"}