Class: Google::Apis::FirestoreV1::DocumentTransform

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

Overview

A transformation of a document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DocumentTransform

Returns a new instance of DocumentTransform.



727
728
729
# File 'lib/google/apis/firestore_v1/classes.rb', line 727

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

Instance Attribute Details

#documentString

The name of the document to transform. Corresponds to the JSON property document

Returns:

  • (String)


719
720
721
# File 'lib/google/apis/firestore_v1/classes.rb', line 719

def document
  @document
end

#field_transformsArray<Google::Apis::FirestoreV1::FieldTransform>

The list of transformations to apply to the fields of the document, in order. This must not be empty. Corresponds to the JSON property fieldTransforms



725
726
727
# File 'lib/google/apis/firestore_v1/classes.rb', line 725

def field_transforms
  @field_transforms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



732
733
734
735
# File 'lib/google/apis/firestore_v1/classes.rb', line 732

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