Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheckDataTypeEvidence
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheckDataTypeEvidence
- 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
-
#data_type ⇒ String
The data type that was found in your app.
-
#data_type_evidence ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEvidence
Evidence collected about a data type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaCheckDataTypeEvidence
constructor
A new instance of GoogleChecksReportV1alphaCheckDataTypeEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_type ⇒ String
The data type that was found in your app.
Corresponds to the JSON property dataType
836 837 838 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 836 def data_type @data_type end |
#data_type_evidence ⇒ Google::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 |