UpdateObjectMetadata
public struct UpdateObjectMetadata : Codable, Equatable
Basic information about an updated object.
-
The updated name of the object. The name can contain alphanumeric, underscore, hyphen, space, and dot characters. It cannot begin with the reserved prefix
sys-
.Declaration
Swift
public var object: String
-
Number of bounding boxes in the collection with the updated object name.
Declaration
Swift
public var count: Int?
-
Initialize a
UpdateObjectMetadata
with member variables.Declaration
Swift
public init( object: String )
Parameters
object
The updated name of the object. The name can contain alphanumeric, underscore, hyphen, space, and dot characters. It cannot begin with the reserved prefix
sys-
.Return Value
An initialized
UpdateObjectMetadata
.