Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v23/classes.rb,
lib/google/apis/searchads360_v23/representations.rb,
lib/google/apis/searchads360_v23/representations.rb
Overview
A local services verification resource.
Instance Attribute Summary collapse
-
#artifact_type ⇒ String
Output only.
-
#background_check_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesBackgroundCheckVerificationArtifact
specific to local services background check.
-
#business_registration_check_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesBusinessRegistrationCheckVerificationArtifact
specific to a local services business registration check.
-
#creation_date_time ⇒ String
Output only.
-
#id ⇒ Fixnum
Output only.
-
#insurance_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesInsuranceVerificationArtifact
specific to a local services insurance.
-
#license_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesLicenseVerificationArtifact
specific to a local services license.
-
#resource_name ⇒ String
Immutable.
-
#status ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact
constructor
A new instance of GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact
Returns a new instance of GoogleAdsSearchads360V23ResourcesLocalServicesVerificationArtifact.
31383 31384 31385 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31383 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact_type ⇒ String
Output only. The type of the verification artifact.
Corresponds to the JSON property artifactType
31337 31338 31339 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31337 def artifact_type @artifact_type end |
#background_check_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesBackgroundCheckVerificationArtifact
specific to local services background check.
Corresponds to the JSON property backgroundCheckVerificationArtifact
31342 31343 31344 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31342 def background_check_verification_artifact @background_check_verification_artifact end |
#business_registration_check_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesBusinessRegistrationCheckVerificationArtifact
specific to a local services business registration check.
Corresponds to the JSON property businessRegistrationCheckVerificationArtifact
31347 31348 31349 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31347 def business_registration_check_verification_artifact @business_registration_check_verification_artifact end |
#creation_date_time ⇒ String
Output only. The timestamp when this verification artifact was created. The
format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's timezone. Examples:
"2018-03-05 09:15:00" or "2018-02-01 14:34:30"
Corresponds to the JSON property creationDateTime
31354 31355 31356 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31354 def creation_date_time @creation_date_time end |
#id ⇒ Fixnum
Output only. The ID of the verification artifact.
Corresponds to the JSON property id
31359 31360 31361 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31359 def id @id end |
#insurance_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesInsuranceVerificationArtifact
specific to a local services insurance.
Corresponds to the JSON property insuranceVerificationArtifact
31364 31365 31366 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31364 def insurance_verification_artifact @insurance_verification_artifact end |
#license_verification_artifact ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesLicenseVerificationArtifact
specific to a local services license.
Corresponds to the JSON property licenseVerificationArtifact
31369 31370 31371 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31369 def license_verification_artifact @license_verification_artifact end |
#resource_name ⇒ String
Immutable. The resource name of the Local Services Verification. Local
Services Verification resource names have the form: customers/customer_id/
localServicesVerificationArtifacts/verification_artifact_id`
Corresponds to the JSON propertyresourceName`
31376 31377 31378 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31376 def resource_name @resource_name end |
#status ⇒ String
Output only. The status of the verification artifact.
Corresponds to the JSON property status
31381 31382 31383 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31381 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31388 def update!(**args) @artifact_type = args[:artifact_type] if args.key?(:artifact_type) @background_check_verification_artifact = args[:background_check_verification_artifact] if args.key?(:background_check_verification_artifact) @business_registration_check_verification_artifact = args[:business_registration_check_verification_artifact] if args.key?(:business_registration_check_verification_artifact) @creation_date_time = args[:creation_date_time] if args.key?(:creation_date_time) @id = args[:id] if args.key?(:id) @insurance_verification_artifact = args[:insurance_verification_artifact] if args.key?(:insurance_verification_artifact) @license_verification_artifact = args[:license_verification_artifact] if args.key?(:license_verification_artifact) @resource_name = args[:resource_name] if args.key?(:resource_name) @status = args[:status] if args.key?(:status) end |