/* Options: Date: 2026-09-23 07:55:27 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.dev //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteArticleMapping.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/articles/mappings/{Id}", Verbs="DELETE") @ValidateRequest(Validator="IsAuthenticated") public static class DeleteArticleMapping implements IReturn, ICompany { /** * Company to delete the article mapping for */ @ApiMember(Description="Company to delete the article mapping for") public UUID CompanyId = null; /** * Id of the article mapping */ @ApiMember(Description="Id of the article mapping", IsRequired=true, ParameterType="path") public UUID Id = null; public UUID getCompanyId() { return CompanyId; } public DeleteArticleMapping setCompanyId(UUID value) { this.CompanyId = value; return this; } public UUID getId() { return Id; } public DeleteArticleMapping setId(UUID value) { this.Id = value; return this; } private static Object responseType = ArticleMappingResponse.class; public Object getResponseType() { return responseType; } } public static class ArticleMappingResponse { /** * The company id */ @ApiMember(Description="The company id") public UUID CompanyId = null; /** * The id */ @ApiMember(Description="The id") public UUID Id = null; /** * The BokaMera article id */ @ApiMember(Description="The BokaMera article id") public Integer ArticleId = null; /** * The external reference */ @ApiMember(Description="The external reference") public String ExternalReference = null; /** * The Reference Type */ @ApiMember(Description="The Reference Type") public String ReferenceType = null; public UUID getCompanyId() { return CompanyId; } public ArticleMappingResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } public UUID getId() { return Id; } public ArticleMappingResponse setId(UUID value) { this.Id = value; return this; } public Integer getArticleId() { return ArticleId; } public ArticleMappingResponse setArticleId(Integer value) { this.ArticleId = value; return this; } public String getExternalReference() { return ExternalReference; } public ArticleMappingResponse setExternalReference(String value) { this.ExternalReference = value; return this; } public String getReferenceType() { return ReferenceType; } public ArticleMappingResponse setReferenceType(String value) { this.ReferenceType = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }