Class: Google::Apis::VisionV1::Property

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb

Overview

Arbitrary name/value pair.

Defined Under Namespace

Classes: Representation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Property

Returns a new instance of Property.



808
809
810
# File 'lib/google/apis/vision_v1/classes.rb', line 808

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Name of the property. Corresponds to the JSON property ‘name`

Returns:

  • (String)


806
807
808
# File 'lib/google/apis/vision_v1/classes.rb', line 806

def name
  @name
end

#valueString

Value of the property. Corresponds to the JSON property ‘value`

Returns:

  • (String)


801
802
803
# File 'lib/google/apis/vision_v1/classes.rb', line 801

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



813
814
815
816
# File 'lib/google/apis/vision_v1/classes.rb', line 813

def update!(**args)
  @value = args[:value] if args.key?(:value)
  @name = args[:name] if args.key?(:name)
end