Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
POST | /schedules/recurring | Add new recurring schedule | Add new recurring schedule to the company for the currently logged in user, only administrators are allowed to add schedules. |
---|
import 'package:servicestack/servicestack.dart';
class DayOfWeekDto implements IConvertible
{
int? DayOfWeekId;
int? DotNetDayOfWeekId;
String? DayOfWeek;
DayOfWeekDto({this.DayOfWeekId,this.DotNetDayOfWeekId,this.DayOfWeek});
DayOfWeekDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
DayOfWeekId = json['DayOfWeekId'];
DotNetDayOfWeekId = json['DotNetDayOfWeekId'];
DayOfWeek = json['DayOfWeek'];
return this;
}
Map<String, dynamic> toJson() => {
'DayOfWeekId': DayOfWeekId,
'DotNetDayOfWeekId': DotNetDayOfWeekId,
'DayOfWeek': DayOfWeek
};
getTypeName() => "DayOfWeekDto";
TypeContext? context = _ctx;
}
class ScheduleResources implements IConvertible
{
int? Id;
/**
* Name of the resource
*/
// @ApiMember(Description="Name of the resource")
String? Name;
/**
* The image url of the resource
*/
// @ApiMember(Description="The image url of the resource")
Uri? ImageUrl;
ScheduleResources({this.Id,this.Name,this.ImageUrl});
ScheduleResources.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
Name = json['Name'];
ImageUrl = JsonConverters.fromJson(json['ImageUrl'],'Uri',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'Name': Name,
'ImageUrl': JsonConverters.toJson(ImageUrl,'Uri',context!)
};
getTypeName() => "ScheduleResources";
TypeContext? context = _ctx;
}
class ScheduleServices implements IConvertible
{
int? Id;
/**
* Name of the service
*/
// @ApiMember(Description="Name of the service")
String? Name;
/**
* The image url of the service
*/
// @ApiMember(Description="The image url of the service")
Uri? ImageUrl;
ScheduleServices({this.Id,this.Name,this.ImageUrl});
ScheduleServices.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
Name = json['Name'];
ImageUrl = JsonConverters.fromJson(json['ImageUrl'],'Uri',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'Name': Name,
'ImageUrl': JsonConverters.toJson(ImageUrl,'Uri',context!)
};
getTypeName() => "ScheduleServices";
TypeContext? context = _ctx;
}
class RecurringScheduleExceptionResponse implements IConvertible
{
/**
* Start time of the schedule exception.
*/
// @ApiMember(Description="Start time of the schedule exception.")
Duration? StartTime;
/**
* End time of the schedule exception.
*/
// @ApiMember(Description="End time of the schedule exception.")
Duration? EndTime;
RecurringScheduleExceptionResponse({this.StartTime,this.EndTime});
RecurringScheduleExceptionResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
return this;
}
Map<String, dynamic> toJson() => {
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!)
};
getTypeName() => "RecurringScheduleExceptionResponse";
TypeContext? context = _ctx;
}
class RecurringScheduleDateResponse implements IConvertible
{
int? Id;
DateTime? Date;
Duration? StartTime;
Duration? EndTime;
ResponseStatus? ResponseStatus;
RecurringScheduleDateResponse({this.Id,this.Date,this.StartTime,this.EndTime,this.ResponseStatus});
RecurringScheduleDateResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
Date = JsonConverters.fromJson(json['Date'],'DateTime',context!);
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'Date': JsonConverters.toJson(Date,'DateTime',context!),
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!),
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!)
};
getTypeName() => "RecurringScheduleDateResponse";
TypeContext? context = _ctx;
}
class RecurringScheduleQueryResponse implements IConvertible
{
/**
* The schedule id
*/
// @ApiMember(Description="The schedule id")
int? Id;
/**
* Name of the schedule
*/
// @ApiMember(Description="Name of the schedule")
String? Name;
/**
* Description of the schedule
*/
// @ApiMember(Description="Description of the schedule")
String? Description;
/**
* If the schedule is active or not
*/
// @ApiMember(Description="If the schedule is active or not")
bool? Active;
/**
* Time interval for available times Here you set the interval at which times should appear. For example, if you select the range 15minutes, and your service has an duration of 1 hour and opening hours are 9AM to 6PM you will see the following suggested times: 09AM-10PM 09:15AM-10:15PM, 09:30AM-10:30PM , ..... 04:45PM-05:45, 05:00PM-06:00PM
*/
// @ApiMember(Description="Time interval for available times Here you set the interval at which times should appear. For example, if you select the range 15minutes, and your service has an duration of 1 hour and opening hours are 9AM to 6PM you will see the following suggested times: 09AM-10PM 09:15AM-10:15PM, 09:30AM-10:30PM , ..... 04:45PM-05:45, 05:00PM-06:00PM", IsRequired=true)
int? TimeInterval;
/**
* The timestamp to which the schedule is valid from
*/
// @ApiMember(Description="The timestamp to which the schedule is valid from", IsRequired=true)
DateTime? ValidFrom;
/**
* The timestamp to which the schedule is valid to
*/
// @ApiMember(Description="The timestamp to which the schedule is valid to", IsRequired=true)
DateTime? ValidTo;
/**
* The time for the schedule opening hours (starttime)
*/
// @ApiMember(Description="The time for the schedule opening hours (starttime)", IsRequired=true)
Duration? StartTime;
/**
* The time for the schedule opening hours (endtime)
*/
// @ApiMember(Description="The time for the schedule opening hours (endtime)", IsRequired=true)
Duration? EndTime;
/**
* The number of days the schedule is valid from todays date
*/
// @ApiMember(Description="The number of days the schedule is valid from todays date", IsRequired=true)
int? NumberOfScheduleDays;
/**
* If the schedule is only connected to some specific resources. Note: You must have IncludeResources property to see this.
*/
// @ApiMember(Description="If the schedule is only connected to some specific resources. Note: You must have IncludeResources property to see this.", IsRequired=true)
bool? IsResourceSpecific;
/**
* The timestamp when the schedule was updated
*/
// @ApiMember(Description="The timestamp when the schedule was updated", IsRequired=true)
DateTime? UpdatedDate;
/**
* The timestamp when the schedule was created
*/
// @ApiMember(Description="The timestamp when the schedule was created", IsRequired=true)
DateTime? CreatedDate;
/**
* Allow bookings end time exceeds the opening hours Here you can choose whether it should be possible to make a reservation exceeding the opening hours. This should be ticked when a service duration is longer than 24 hours (possible to book over midnight).
*/
// @ApiMember(Description="Allow bookings end time exceeds the opening hours Here you can choose whether it should be possible to make a reservation exceeding the opening hours. This should be ticked when a service duration is longer than 24 hours (possible to book over midnight).", IsRequired=true)
bool? EnableBookingUntilClosingTime;
/**
* If recurring, an array indicating which days of the week the exception recures on where 1 = Monday .. 7 = Sunday. When recurring then the time portion of the Fields From and To indicates the time of day the recurrence occurs
*/
// @ApiMember(Description="If recurring, an array indicating which days of the week the exception recures on where 1 = Monday .. 7 = Sunday. When recurring then the time portion of the Fields From and To indicates the time of day the recurrence occurs")
List<DayOfWeekDto>? DaysOfWeek;
/**
* The resources that is connected to the schedule
*/
// @ApiMember(Description="The resources that is connected to the schedule")
List<ScheduleResources>? Resources;
/**
* The services that is connected to the schedule
*/
// @ApiMember(Description="The services that is connected to the schedule")
List<ScheduleServices>? Services;
/**
* The exceptions that is added to the schedule
*/
// @ApiMember(Description="The exceptions that is added to the schedule")
List<RecurringScheduleExceptionResponse>? Exceptions;
/**
* Schedule dates, used when the schedule is not a rolling schedule using days of week
*/
// @ApiMember(Description="Schedule dates, used when the schedule is not a rolling schedule using days of week")
List<RecurringScheduleDateResponse>? ScheduleDates;
ResponseStatus? ResponseStatus;
RecurringScheduleQueryResponse({this.Id,this.Name,this.Description,this.Active,this.TimeInterval,this.ValidFrom,this.ValidTo,this.StartTime,this.EndTime,this.NumberOfScheduleDays,this.IsResourceSpecific,this.UpdatedDate,this.CreatedDate,this.EnableBookingUntilClosingTime,this.DaysOfWeek,this.Resources,this.Services,this.Exceptions,this.ScheduleDates,this.ResponseStatus});
RecurringScheduleQueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
Name = json['Name'];
Description = json['Description'];
Active = json['Active'];
TimeInterval = json['TimeInterval'];
ValidFrom = JsonConverters.fromJson(json['ValidFrom'],'DateTime',context!);
ValidTo = JsonConverters.fromJson(json['ValidTo'],'DateTime',context!);
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
NumberOfScheduleDays = json['NumberOfScheduleDays'];
IsResourceSpecific = json['IsResourceSpecific'];
UpdatedDate = JsonConverters.fromJson(json['UpdatedDate'],'DateTime',context!);
CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!);
EnableBookingUntilClosingTime = json['EnableBookingUntilClosingTime'];
DaysOfWeek = JsonConverters.fromJson(json['DaysOfWeek'],'List<DayOfWeekDto>',context!);
Resources = JsonConverters.fromJson(json['Resources'],'List<ScheduleResources>',context!);
Services = JsonConverters.fromJson(json['Services'],'List<ScheduleServices>',context!);
Exceptions = JsonConverters.fromJson(json['Exceptions'],'List<RecurringScheduleExceptionResponse>',context!);
ScheduleDates = JsonConverters.fromJson(json['ScheduleDates'],'List<RecurringScheduleDateResponse>',context!);
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'Name': Name,
'Description': Description,
'Active': Active,
'TimeInterval': TimeInterval,
'ValidFrom': JsonConverters.toJson(ValidFrom,'DateTime',context!),
'ValidTo': JsonConverters.toJson(ValidTo,'DateTime',context!),
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!),
'NumberOfScheduleDays': NumberOfScheduleDays,
'IsResourceSpecific': IsResourceSpecific,
'UpdatedDate': JsonConverters.toJson(UpdatedDate,'DateTime',context!),
'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!),
'EnableBookingUntilClosingTime': EnableBookingUntilClosingTime,
'DaysOfWeek': JsonConverters.toJson(DaysOfWeek,'List<DayOfWeekDto>',context!),
'Resources': JsonConverters.toJson(Resources,'List<ScheduleResources>',context!),
'Services': JsonConverters.toJson(Services,'List<ScheduleServices>',context!),
'Exceptions': JsonConverters.toJson(Exceptions,'List<RecurringScheduleExceptionResponse>',context!),
'ScheduleDates': JsonConverters.toJson(ScheduleDates,'List<RecurringScheduleDateResponse>',context!),
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!)
};
getTypeName() => "RecurringScheduleQueryResponse";
TypeContext? context = _ctx;
}
class AddRecurringScheduleDate implements IConvertible
{
/**
* The date for the schedule opening (only date part is used here
*/
// @ApiMember(Description="The date for the schedule opening (only date part is used here", IsRequired=true)
DateTime? Date;
/**
* The time for the schedule opening hours (starttime)
*/
// @ApiMember(Description="The time for the schedule opening hours (starttime)", IsRequired=true)
Duration? StartTime;
/**
* The time for the schedule opening hours (endtime)
*/
// @ApiMember(Description="The time for the schedule opening hours (endtime)", IsRequired=true)
Duration? EndTime;
AddRecurringScheduleDate({this.Date,this.StartTime,this.EndTime});
AddRecurringScheduleDate.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Date = JsonConverters.fromJson(json['Date'],'DateTime',context!);
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Date': JsonConverters.toJson(Date,'DateTime',context!),
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!)
};
getTypeName() => "AddRecurringScheduleDate";
TypeContext? context = _ctx;
}
class ScheduleException implements IConvertible
{
Duration? StartTime;
Duration? EndTime;
ScheduleException({this.StartTime,this.EndTime});
ScheduleException.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
return this;
}
Map<String, dynamic> toJson() => {
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!)
};
getTypeName() => "ScheduleException";
TypeContext? context = _ctx;
}
class AddScheduleResource implements IConvertible
{
/**
* The resource id
*/
// @ApiMember(Description="The resource id", IsRequired=true)
int? Id;
AddScheduleResource({this.Id});
AddScheduleResource.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id
};
getTypeName() => "AddScheduleResource";
TypeContext? context = _ctx;
}
class AddScheduleService implements IConvertible
{
/**
* The service id
*/
// @ApiMember(Description="The service id", IsRequired=true)
int? Id;
AddScheduleService({this.Id});
AddScheduleService.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id
};
getTypeName() => "AddScheduleService";
TypeContext? context = _ctx;
}
// @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
// @ValidateRequest(Validator="IsAuthenticated")
class CreateRecurringSchedule implements ICompany, IConvertible
{
/**
* The company id, if empty will use the company id for the user you are logged in with.
*/
// @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
String? CompanyId;
/**
* The schedule name
*/
// @ApiMember(Description="The schedule name")
String? Name;
/**
* The schedule description
*/
// @ApiMember(Description="The schedule description")
String? Description;
/**
* If schedule is active or not
*/
// @ApiMember(Description="If schedule is active or not")
bool? Active;
/**
* Time interval for available times. Here you set the interval at which times should appear. For example, if you select the range 15minutes, and your service has an duration of 1 hour and opening hours are 9AM to 6PM you will see the following suggested times: 09AM-10PM 09:15AM-10:15PM, 09:30AM-10:30PM , ..... 04:45PM-05:45, 05:00PM-06:00PM
*/
// @ApiMember(Description="Time interval for available times. Here you set the interval at which times should appear. For example, if you select the range 15minutes, and your service has an duration of 1 hour and opening hours are 9AM to 6PM you will see the following suggested times: 09AM-10PM 09:15AM-10:15PM, 09:30AM-10:30PM , ..... 04:45PM-05:45, 05:00PM-06:00PM", IsRequired=true)
int? TimeInterval;
/**
* Allow bookings end time exceeds the opening hours Here you can choose whether it should be possible to make a reservation exceeding the opening hours. This should be ticked when a service duration is longer than 24 hours (possible to book over midnight).
*/
// @ApiMember(Description="Allow bookings end time exceeds the opening hours Here you can choose whether it should be possible to make a reservation exceeding the opening hours. This should be ticked when a service duration is longer than 24 hours (possible to book over midnight).", IsRequired=true)
bool? EnableBookingUntilClosingTime;
/**
* The timestamp to which the schedule is valid from
*/
// @ApiMember(Description="The timestamp to which the schedule is valid from", IsRequired=true)
DateTime? ValidFrom;
/**
* The timestamp to which the schedule is valid to
*/
// @ApiMember(Description="The timestamp to which the schedule is valid to", IsRequired=true)
DateTime? ValidTo;
/**
* The time for the schedule opening hours (starttime)
*/
// @ApiMember(Description="The time for the schedule opening hours (starttime)", IsRequired=true)
Duration? StartTime;
/**
* The time for the schedule opening hours (endtime)
*/
// @ApiMember(Description="The time for the schedule opening hours (endtime)", IsRequired=true)
Duration? EndTime;
/**
* The number of days the schedule is valid from todays date
*/
// @ApiMember(Description="The number of days the schedule is valid from todays date", IsRequired=true)
int? NumberOfScheduleDays;
/**
* If recurring, an array indicating which days of the week the schedule recures on where 1 = Monday .. 7 = Sunday. When recurring then the time portion of the Fields From and To indicates the time of day the recurrence occurs
*/
// @ApiMember(Description="If recurring, an array indicating which days of the week the schedule recures on where 1 = Monday .. 7 = Sunday. When recurring then the time portion of the Fields From and To indicates the time of day the recurrence occurs")
List<int>? DaysOfWeek;
/**
* If not recuring, an array indicating which dates that are open for the schedule.
*/
// @ApiMember(Description="If not recuring, an array indicating which dates that are open for the schedule.")
List<AddRecurringScheduleDate>? ScheduleDates;
/**
* Schedule exceptions. For example closed on lunch time between 12AM and 1PM. These times will be removed from the recurring schedule.
*/
// @ApiMember(Description="Schedule exceptions. For example closed on lunch time between 12AM and 1PM. These times will be removed from the recurring schedule.")
List<ScheduleException>? Exceptions;
/**
* If the schedule is only connected to some resources, add them here. If empty, it will be used by all resources.
*/
// @ApiMember(Description="If the schedule is only connected to some resources, add them here. If empty, it will be used by all resources.")
List<AddScheduleResource>? Resources;
/**
* Set what services the schedule should be connected to.
*/
// @ApiMember(Description="Set what services the schedule should be connected to.")
List<AddScheduleService>? Services;
CreateRecurringSchedule({this.CompanyId,this.Name,this.Description,this.Active,this.TimeInterval,this.EnableBookingUntilClosingTime,this.ValidFrom,this.ValidTo,this.StartTime,this.EndTime,this.NumberOfScheduleDays,this.DaysOfWeek,this.ScheduleDates,this.Exceptions,this.Resources,this.Services});
CreateRecurringSchedule.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CompanyId = json['CompanyId'];
Name = json['Name'];
Description = json['Description'];
Active = json['Active'];
TimeInterval = json['TimeInterval'];
EnableBookingUntilClosingTime = json['EnableBookingUntilClosingTime'];
ValidFrom = JsonConverters.fromJson(json['ValidFrom'],'DateTime',context!);
ValidTo = JsonConverters.fromJson(json['ValidTo'],'DateTime',context!);
StartTime = JsonConverters.fromJson(json['StartTime'],'Duration',context!);
EndTime = JsonConverters.fromJson(json['EndTime'],'Duration',context!);
NumberOfScheduleDays = json['NumberOfScheduleDays'];
DaysOfWeek = JsonConverters.fromJson(json['DaysOfWeek'],'List<int>',context!);
ScheduleDates = JsonConverters.fromJson(json['ScheduleDates'],'List<AddRecurringScheduleDate>',context!);
Exceptions = JsonConverters.fromJson(json['Exceptions'],'List<ScheduleException>',context!);
Resources = JsonConverters.fromJson(json['Resources'],'List<AddScheduleResource>',context!);
Services = JsonConverters.fromJson(json['Services'],'List<AddScheduleService>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'CompanyId': CompanyId,
'Name': Name,
'Description': Description,
'Active': Active,
'TimeInterval': TimeInterval,
'EnableBookingUntilClosingTime': EnableBookingUntilClosingTime,
'ValidFrom': JsonConverters.toJson(ValidFrom,'DateTime',context!),
'ValidTo': JsonConverters.toJson(ValidTo,'DateTime',context!),
'StartTime': JsonConverters.toJson(StartTime,'Duration',context!),
'EndTime': JsonConverters.toJson(EndTime,'Duration',context!),
'NumberOfScheduleDays': NumberOfScheduleDays,
'DaysOfWeek': JsonConverters.toJson(DaysOfWeek,'List<int>',context!),
'ScheduleDates': JsonConverters.toJson(ScheduleDates,'List<AddRecurringScheduleDate>',context!),
'Exceptions': JsonConverters.toJson(Exceptions,'List<ScheduleException>',context!),
'Resources': JsonConverters.toJson(Resources,'List<AddScheduleResource>',context!),
'Services': JsonConverters.toJson(Services,'List<AddScheduleService>',context!)
};
getTypeName() => "CreateRecurringSchedule";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: <String, TypeInfo> {
'DayOfWeekDto': TypeInfo(TypeOf.Class, create:() => DayOfWeekDto()),
'ScheduleResources': TypeInfo(TypeOf.Class, create:() => ScheduleResources()),
'Uri': TypeInfo(TypeOf.Class, create:() => Uri()),
'ScheduleServices': TypeInfo(TypeOf.Class, create:() => ScheduleServices()),
'RecurringScheduleExceptionResponse': TypeInfo(TypeOf.Class, create:() => RecurringScheduleExceptionResponse()),
'RecurringScheduleDateResponse': TypeInfo(TypeOf.Class, create:() => RecurringScheduleDateResponse()),
'RecurringScheduleQueryResponse': TypeInfo(TypeOf.Class, create:() => RecurringScheduleQueryResponse()),
'List<DayOfWeekDto>': TypeInfo(TypeOf.Class, create:() => <DayOfWeekDto>[]),
'List<ScheduleResources>': TypeInfo(TypeOf.Class, create:() => <ScheduleResources>[]),
'List<ScheduleServices>': TypeInfo(TypeOf.Class, create:() => <ScheduleServices>[]),
'List<RecurringScheduleExceptionResponse>': TypeInfo(TypeOf.Class, create:() => <RecurringScheduleExceptionResponse>[]),
'List<RecurringScheduleDateResponse>': TypeInfo(TypeOf.Class, create:() => <RecurringScheduleDateResponse>[]),
'AddRecurringScheduleDate': TypeInfo(TypeOf.Class, create:() => AddRecurringScheduleDate()),
'ScheduleException': TypeInfo(TypeOf.Class, create:() => ScheduleException()),
'AddScheduleResource': TypeInfo(TypeOf.Class, create:() => AddScheduleResource()),
'AddScheduleService': TypeInfo(TypeOf.Class, create:() => AddScheduleService()),
'CreateRecurringSchedule': TypeInfo(TypeOf.Class, create:() => CreateRecurringSchedule()),
'List<AddRecurringScheduleDate>': TypeInfo(TypeOf.Class, create:() => <AddRecurringScheduleDate>[]),
'List<ScheduleException>': TypeInfo(TypeOf.Class, create:() => <ScheduleException>[]),
'List<AddScheduleResource>': TypeInfo(TypeOf.Class, create:() => <AddScheduleResource>[]),
'List<AddScheduleService>': TypeInfo(TypeOf.Class, create:() => <AddScheduleService>[]),
});
Dart CreateRecurringSchedule DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /schedules/recurring HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateRecurringSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<Active>false</Active>
<CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
<DaysOfWeek xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>0</d2p1:int>
</DaysOfWeek>
<Description>String</Description>
<EnableBookingUntilClosingTime>false</EnableBookingUntilClosingTime>
<EndTime>PT0S</EndTime>
<Exceptions>
<ScheduleException>
<EndTime>PT0S</EndTime>
<StartTime>PT0S</StartTime>
</ScheduleException>
</Exceptions>
<Name>String</Name>
<NumberOfScheduleDays>0</NumberOfScheduleDays>
<Resources>
<AddScheduleResource>
<Id>0</Id>
</AddScheduleResource>
</Resources>
<ScheduleDates>
<AddRecurringScheduleDate>
<Date>0001-01-01T00:00:00</Date>
<EndTime>PT0S</EndTime>
<StartTime>PT0S</StartTime>
</AddRecurringScheduleDate>
</ScheduleDates>
<Services>
<AddScheduleService>
<Id>0</Id>
</AddScheduleService>
</Services>
<StartTime>PT0S</StartTime>
<TimeInterval>0</TimeInterval>
<ValidFrom>0001-01-01T00:00:00</ValidFrom>
<ValidTo>0001-01-01T00:00:00</ValidTo>
</CreateRecurringSchedule>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <RecurringScheduleQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Active>false</Active> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <DaysOfWeek> <DayOfWeekDto> <DayOfWeek>String</DayOfWeek> <DayOfWeekId>0</DayOfWeekId> <DotNetDayOfWeekId>0</DotNetDayOfWeekId> </DayOfWeekDto> </DaysOfWeek> <Description>String</Description> <EnableBookingUntilClosingTime>false</EnableBookingUntilClosingTime> <EndTime>PT0S</EndTime> <Exceptions> <RecurringScheduleExceptionResponse> <EndTime>PT0S</EndTime> <StartTime>PT0S</StartTime> </RecurringScheduleExceptionResponse> </Exceptions> <Id>0</Id> <IsResourceSpecific>false</IsResourceSpecific> <Name>String</Name> <NumberOfScheduleDays>0</NumberOfScheduleDays> <Resources> <ScheduleResources> <Id>0</Id> <ImageUrl i:nil="true" /> <Name>String</Name> </ScheduleResources> </Resources> <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types"> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:Message>String</d2p1:Message> <d2p1:StackTrace>String</d2p1:StackTrace> <d2p1:Errors> <d2p1:ResponseError> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:FieldName>String</d2p1:FieldName> <d2p1:Message>String</d2p1:Message> <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </d2p1:Meta> </d2p1:ResponseError> </d2p1:Errors> <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Meta> </ResponseStatus> <ScheduleDates> <RecurringScheduleDateResponse> <Date>0001-01-01T00:00:00</Date> <EndTime>PT0S</EndTime> <Id>0</Id> <ResponseStatus xmlns:d4p1="http://schemas.servicestack.net/types"> <d4p1:ErrorCode>String</d4p1:ErrorCode> <d4p1:Message>String</d4p1:Message> <d4p1:StackTrace>String</d4p1:StackTrace> <d4p1:Errors> <d4p1:ResponseError> <d4p1:ErrorCode>String</d4p1:ErrorCode> <d4p1:FieldName>String</d4p1:FieldName> <d4p1:Message>String</d4p1:Message> <d4p1:Meta xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:KeyValueOfstringstring> <d7p1:Key>String</d7p1:Key> <d7p1:Value>String</d7p1:Value> </d7p1:KeyValueOfstringstring> </d4p1:Meta> </d4p1:ResponseError> </d4p1:Errors> <d4p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </d4p1:Meta> </ResponseStatus> <StartTime>PT0S</StartTime> </RecurringScheduleDateResponse> </ScheduleDates> <Services> <ScheduleServices> <Id>0</Id> <ImageUrl i:nil="true" /> <Name>String</Name> </ScheduleServices> </Services> <StartTime>PT0S</StartTime> <TimeInterval>0</TimeInterval> <UpdatedDate>0001-01-01T00:00:00</UpdatedDate> <ValidFrom>0001-01-01T00:00:00</ValidFrom> <ValidTo>0001-01-01T00:00:00</ValidTo> </RecurringScheduleQueryResponse>