/* Options: Date: 2025-09-14 05:30:11 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-supplierconnect.azurewebsites.net/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResendScheduleNotification.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * 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.) */ @Route(Path="/schedules/{id}/resend", Verbs="POST") @Api(Description="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.)") open class ResendScheduleNotification : IReturn { /** * Id of the schedule request to resend the notification for */ @DataMember(Name="id") @SerializedName("id") @ApiMember(Description="Id of the schedule request to resend the notification for", IsRequired=true, Name="id") open var Id:UUID? = null companion object { private val responseType = ScheduleResponse::class.java } override fun getResponseType(): Any? = ResendScheduleNotification.responseType } open class ScheduleResponse { open var ReferenceId:UUID? = null open var CommunicationId:UUID? = null open var Success:Boolean? = null open var Message:String? = null open var Payload:String? = null }