TrainingEvents
public struct TrainingEvents : Codable, Equatable
Details about the training events.
-
The starting day for the returned training events in Coordinated Universal Time (UTC). If not specified in the request, it identifies the earliest training event.
Declaration
Swift
public var startTime: Date?
-
The ending day for the returned training events in Coordinated Universal Time (UTC). If not specified in the request, it lists the current time.
Declaration
Swift
public var endTime: Date?
-
The total number of training events in the response for the start and end times.
Declaration
Swift
public var completedEvents: Int?
-
The total number of images that were used in training for the start and end times.
Declaration
Swift
public var trainedImages: Int?
-
The completed training events for the start and end time.
Declaration
Swift
public var events: [TrainingEvent]?