""" Options: Date: 2025-09-14 06:52:09 Version: 8.52 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://production-eros-gateway-api-supplierconnect.azurewebsites.net/api #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: ResendScheduleNotification.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ScheduleResponse: reference_id: Optional[str] = None communication_id: Optional[str] = None success: bool = False message: Optional[str] = None payload: Optional[str] = None # @Route("/schedules/{id}/resend", "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.)") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ResendScheduleNotification(IReturn[ScheduleResponse]): """ 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.) """ # @ApiMember(Description="Id of the schedule request to resend the notification for", IsRequired=true, Name="id") id: Optional[str] = None """ Id of the schedule request to resend the notification for """