/* Options: Date: 2025-09-14 06:59:22 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-supplierconnect.azurewebsites.net/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ResendScheduleNotification.* //ExcludeTypes: //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.*; public class dtos { /** * 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.)") public static class ResendScheduleNotification implements 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") public UUID Id = null; public UUID getId() { return Id; } public ResendScheduleNotification setId(UUID value) { this.Id = value; return this; } private static Object responseType = ScheduleResponse.class; public Object getResponseType() { return responseType; } } public static class ScheduleResponse { public UUID ReferenceId = null; public UUID CommunicationId = null; public Boolean Success = null; public String Message = null; public String Payload = null; public UUID getReferenceId() { return ReferenceId; } public ScheduleResponse setReferenceId(UUID value) { this.ReferenceId = value; return this; } public UUID getCommunicationId() { return CommunicationId; } public ScheduleResponse setCommunicationId(UUID value) { this.CommunicationId = value; return this; } public Boolean isSuccess() { return Success; } public ScheduleResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getMessage() { return Message; } public ScheduleResponse setMessage(String value) { this.Message = value; return this; } public String getPayload() { return Payload; } public ScheduleResponse setPayload(String value) { this.Payload = value; return this; } } }