Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheckDataTypeEvidence

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

Overview

Evidence concerning a data type that was found in your app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChecksReportV1alphaCheckDataTypeEvidence

Returns a new instance of GoogleChecksReportV1alphaCheckDataTypeEvidence.



843
844
845
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 843

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

Instance Attribute Details

#data_typeString

The data type that was found in your app. Corresponds to the JSON property dataType

Returns:

  • (String)


836
837
838
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 836

def data_type
  @data_type
end

#data_type_evidenceGoogle::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEvidence

Evidence collected about a data type. Corresponds to the JSON property dataTypeEvidence



841
842
843
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 841

def data_type_evidence
  @data_type_evidence
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



848
849
850
851
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 848

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