ImageDetails
public struct ImageDetails : Codable, Equatable
Details about an image.
-
The identifier of the image.
Declaration
Swift
public var imageID: String?
-
Date and time in Coordinated Universal Time (UTC) that the image was most recently updated.
Declaration
Swift
public var updated: Date?
-
Date and time in Coordinated Universal Time (UTC) that the image was created.
Declaration
Swift
public var created: Date?
-
The source type of the image.
Declaration
Swift
public var source: ImageSource
-
Height and width of an image.
Declaration
Swift
public var dimensions: ImageDimensions?
-
Details about the errors.
Declaration
Swift
public var errors: [Error]?
-
Training data for all objects.
Declaration
Swift
public var trainingData: TrainingDataObjects?