Class: Google::Apis::HealthcareV1::TextConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TextConfig

Returns a new instance of TextConfig.



5964
5965
5966
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5964

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

Instance Attribute Details

#additional_transformationsArray<Google::Apis::HealthcareV1::InfoTypeTransformation>

Optional. Transformations to apply to the detected data, overridden by exclude_info_types. Corresponds to the JSON property additionalTransformations



5950
5951
5952
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5950

def additional_transformations
  @additional_transformations
end

#exclude_info_typesArray<String>

Optional. InfoTypes to skip transforming, overriding additional_transformations. Corresponds to the JSON property excludeInfoTypes

Returns:

  • (Array<String>)


5956
5957
5958
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5956

def exclude_info_types
  @exclude_info_types
end

#transformationsArray<Google::Apis::HealthcareV1::InfoTypeTransformation>

Optional. The transformations to apply to the detected data. Deprecated. Use additional_transformations instead. Corresponds to the JSON property transformations



5962
5963
5964
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5962

def transformations
  @transformations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5969
5970
5971
5972
5973
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5969

def update!(**args)
  @additional_transformations = args[:additional_transformations] if args.key?(:additional_transformations)
  @exclude_info_types = args[:exclude_info_types] if args.key?(:exclude_info_types)
  @transformations = args[:transformations] if args.key?(:transformations)
end