Class: Google::Apis::FirestoreV1beta1::GoogleFirestoreAdminV1beta1IndexField

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

Overview

A field of an index.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirestoreAdminV1beta1IndexField

Returns a new instance of GoogleFirestoreAdminV1beta1IndexField.



1587
1588
1589
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1587

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

Instance Attribute Details

#field_pathString

The path of the field. Must match the field path specification described by google.firestore.v1beta1.Document.fields. Special field path __name__ may be used by itself or at the end of a path. __type__ may be used only at the end of path. Corresponds to the JSON property fieldPath

Returns:

  • (String)


1580
1581
1582
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1580

def field_path
  @field_path
end

#modeString

The field's mode. Corresponds to the JSON property mode

Returns:

  • (String)


1585
1586
1587
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1585

def mode
  @mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1592
1593
1594
1595
# File 'lib/google/apis/firestore_v1beta1/classes.rb', line 1592

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