class Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateEntry
Entry associating a tag to an image.
Attributes
image_id[RW]
@return Id of the image.
tag_id[RW]
@return Id of the tag.
Public Class Methods
mapper()
click to toggle source
Mapper for ImageTagCreateEntry
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2.2/generated/azure_cognitiveservices_customvisiontraining/models/image_tag_create_entry.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ImageTagCreateEntry', type: { name: 'Composite', class_name: 'ImageTagCreateEntry', model_properties: { image_id: { client_side_validation: true, required: false, serialized_name: 'imageId', type: { name: 'String' } }, tag_id: { client_side_validation: true, required: false, serialized_name: 'tagId', type: { name: 'String' } } } } } end