/* Options:
Date: 2026-09-24 06:03:09
Version: 10.05
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://testapi.bokamera.se
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: True
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: GetVossSubscriptions.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Globalization;
using ServiceStack.Data;
using System.Net;
using System.Net.Http.Headers;
using BokaMera.API.ServiceModel.Dtos;
namespace BokaMera.API.ServiceModel.Dtos
{
[Route("/voss/subscriptions", "GET")]
[ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)]
public partial class GetVossSubscriptions
{
///
///The company id; If not passed all subscriptions wll be returned
///
[ApiMember(Description="The company id; If not passed all subscriptions wll be returned")]
public virtual Guid? CompanyId { get; set; }
///
///The package id; if not passed the configured BokaMera package will be used.
///
[ApiMember(Description="The package id; if not passed the configured BokaMera package will be used.")]
public virtual Guid? PackageId { get; set; }
}
}