/* Options: Date: 2024-07-03 12:51:46 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: WebhookCreateAgreement.* //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 System.IO; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { public partial class Releases { public Releases() { deletion = new List{}; } public virtual List deletion { get; set; } } public partial class WebhookAgreements { public WebhookAgreements() { documents = new List{}; } public virtual string id { get; set; } public virtual string label { get; set; } public virtual List documents { get; set; } } [Route("/webhooks/terms", "POST")] [ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400)] [ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)] public partial class WebhookCreateAgreement { public WebhookCreateAgreement() { documents = new List{}; } public virtual Releases releases { get; set; } public virtual List documents { get; set; } public virtual string secret { get; set; } } }