(* Options: Date: 2025-09-14 06:03:20 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-supplierconnect.azurewebsites.net/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ResendScheduleNotification.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Dvaravartman.SupplierConnect.Model.APIModels open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ScheduleResponse() = member val ReferenceId:Guid = new Guid() with get,set member val CommunicationId:Guid = new Guid() with get,set member val Success:Boolean = new Boolean() with get,set member val Message:String = null with get,set member val Payload:String = null with get,set /// ///Resends the notification to supplier for a given SupplierConnect schedule by id. (This will return the same information returned on a create schedule request with only change being the communication id which will be the id of the new notification.) /// [] [] [] type ResendScheduleNotification() = interface IReturn /// ///Id of the schedule request to resend the notification for /// [] [] member val Id:Guid = new Guid() with get,set