/* Options:
Date: 2024-11-21 13:12:05
Version: 8.23
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://api.bokamera.se
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: True
//ExportValueTypes: False
IncludeTypes: GoogleCalendarGetICals.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Globalization;
using ServiceStack.Data;
using System.IO;
using BokaMera.API.ServiceModel.Interfaces;
using BokaMera.API.ServiceModel.Dtos;
namespace BokaMera.API.ServiceModel.Dtos
{
[Route("/sync/googlecalendar/icals/{companyid}/{token}", "GET")]
public partial class GoogleCalendarGetICals
: ICompany
{
public GoogleCalendarGetICals()
{
ResourceIds = new int[]{};
}
///
///The company id
///
[ApiMember(Description="The company id", IsRequired=true, ParameterType="path")]
public virtual Guid? CompanyId { get; set; }
///
///Query for specific Resources, default is all resources
///
[ApiMember(Description="Query for specific Resources, default is all resources", ParameterType="query")]
public virtual int[] ResourceIds { get; set; }
///
///If you want to include the schedule time slots
///
[ApiMember(Description="If you want to include the schedule time slots", ParameterType="query")]
public virtual bool IncludeSchedules { get; set; }
///
///GoogleCalendar Token
///
[ApiMember(Description="GoogleCalendar Token", IsRequired=true, ParameterType="path")]
public virtual string Token { get; set; }
}
}
namespace BokaMera.API.ServiceModel.Interfaces
{
public partial interface ICompany
{
Guid? CompanyId { get; set; }
}
}