Class: Google::Apis::Area120tablesV1alpha1::LookupDetails
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::LookupDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/area120tables_v1alpha1/classes.rb,
generated/google/apis/area120tables_v1alpha1/representations.rb,
generated/google/apis/area120tables_v1alpha1/representations.rb
Overview
Details about a lookup column whose value comes from the associated relationship.
Instance Attribute Summary collapse
-
#relationship_column ⇒ String
The name of the relationship column associated with the lookup.
-
#relationship_column_id ⇒ String
The id of the relationship column.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LookupDetails
constructor
A new instance of LookupDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LookupDetails
Returns a new instance of LookupDetails.
327 328 329 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#relationship_column ⇒ String
The name of the relationship column associated with the lookup.
Corresponds to the JSON property relationshipColumn
320 321 322 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 320 def relationship_column @relationship_column end |
#relationship_column_id ⇒ String
The id of the relationship column.
Corresponds to the JSON property relationshipColumnId
325 326 327 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 325 def relationship_column_id @relationship_column_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
332 333 334 335 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 332 def update!(**args) @relationship_column = args[:relationship_column] if args.key?(:relationship_column) @relationship_column_id = args[:relationship_column_id] if args.key?(:relationship_column_id) end |