/* * This code was auto generated by AfterShip SDK Generator. * Do not edit the class manually. */ import { MarkTrackingCompletedByIdRequestReason } from "./MarkTrackingCompletedByIdRequestReason"; /** * */ export interface MarkTrackingCompletedByIdRequest { /** * One of `DELIVERED`, `LOST` or `RETURNED_TO_SENDER`.- Mark the tracking as completed with `DELIVERED`. The tag of the tracking will be updated to `Delivered` and the subtag will be updated to `Delivered_001`.- Mark the tracking as completed with `LOST`. The tag of the tracking will be updated to `Exception` and the subtag will be updated to `Exception_013`.- Mark the tracking as completed with `RETURNED_TO_SENDER`. The tag of the tracking will be updated to `Exception` and the subtag will be updated to `Exception_011`. */ reason: MarkTrackingCompletedByIdRequestReason; /** * The actual occurrence time of the marked tracking status.The field supports the following formats: - YYYY-MM-DD- YYYY-MM-DDTHH:mm:ss- YYYY-MM-DDTHH:mm:ssZ */ event_datetime?: string; }