/* Options:
Date: 2026-09-23 05:59:50
Version: 10.05
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://api.bookmore.dev
//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: ArticleMappingsQuery.*
//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.Interfaces;
using BokaMera.API.ServiceModel.Dtos;
namespace BokaMera.API.ServiceModel.Dtos
{
public partial class ArticleMappingResponse
{
///
///The company id
///
[ApiMember(Description="The company id")]
public virtual Guid CompanyId { get; set; }
///
///The id
///
[ApiMember(Description="The id")]
public virtual Guid Id { get; set; }
///
///The BokaMera article id
///
[ApiMember(Description="The BokaMera article id")]
public virtual int ArticleId { get; set; }
///
///The external reference
///
[ApiMember(Description="The external reference")]
public virtual string ExternalReference { get; set; }
///
///The Reference Type
///
[ApiMember(Description="The Reference Type")]
public virtual string ReferenceType { get; set; }
}
[Route("/articles/mappings", "GET")]
[ValidateRequest("IsAuthenticated")]
public partial class ArticleMappingsQuery
: IReturn>, ICompany
{
///
///Company to show article mappings for
///
[ApiMember(Description="Company to show article mappings for")]
public virtual Guid? CompanyId { get; set; }
///
///The Reference Type to filter on: StripeArticle, EAccountingArticle
///
[ApiMember(Description="The Reference Type to filter on: StripeArticle, EAccountingArticle")]
public virtual string ReferenceType { get; set; }
///
///Article to show mappings for
///
[ApiMember(Description="Article to show mappings for")]
public virtual int? ArticleId { get; set; }
}
}
namespace BokaMera.API.ServiceModel.Interfaces
{
public partial interface ICompany
{
Guid? CompanyId { get; set; }
}
}