/* Options: Date: 2026-04-04 20:46:59 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://notifications.breastcancertrials.org.au //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: SendIncompleteResubmittableFormEmail.* //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 BctNotification.ServiceModel.Types; using BctNotification.ServiceModel.Requests.Hangfire; namespace BctNotification.ServiceModel.Requests.Hangfire { [Route("/notification/send-incomplete-resubmittable-form-email/", "POST")] [ApiResponse(Description="Unauthorized.", StatusCode=401)] [ApiResponse(Description="Forbidden.", StatusCode=403)] [ApiResponse(Description="Bad Request.", StatusCode=400)] [ApiResponse(Description="Internal Server Error.", StatusCode=500)] public partial class SendIncompleteResubmittableFormEmail : IReturn { } public partial class SendIncompleteResubmittableFormEmailResponse { public SendIncompleteResubmittableFormEmailResponse() { ToAddresses = new List{}; CcAddresses = new List{}; BccAddresses = new List{}; } public virtual int? IncompleteResubmittabFormCount { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } public virtual string Result { get; set; } public virtual string Subject { get; set; } public virtual List ToAddresses { get; set; } public virtual List CcAddresses { get; set; } public virtual List BccAddresses { get; set; } public virtual EmailAddress FromAddress { get; set; } } } namespace BctNotification.ServiceModel.Types { public partial class EmailAddress { public virtual string DisplayName { get; set; } public virtual string Address { get; set; } } }