Class: Google::Apis::PartnersV2::CreateLeadResponse

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

Overview

Response message for CreateLead.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreateLeadResponse

Returns a new instance of CreateLeadResponse



731
732
733
# File 'generated/google/apis/partners_v2/classes.rb', line 731

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

Instance Attribute Details

#leadGoogle::Apis::PartnersV2::Lead

A lead resource that represents an advertiser contact for a Company. These are usually generated via Google Partner Search (the advertiser portal). Corresponds to the JSON property lead



718
719
720
# File 'generated/google/apis/partners_v2/classes.rb', line 718

def lead
  @lead
end

#recaptcha_statusString

The outcome of reCaptcha validation. Corresponds to the JSON property recaptchaStatus

Returns:

  • (String)


724
725
726
# File 'generated/google/apis/partners_v2/classes.rb', line 724

def recaptcha_status
  @recaptcha_status
end

#response_metadataGoogle::Apis::PartnersV2::ResponseMetadata

Common data that is in each API response. Corresponds to the JSON property responseMetadata



729
730
731
# File 'generated/google/apis/partners_v2/classes.rb', line 729

def 
  @response_metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



736
737
738
739
740
# File 'generated/google/apis/partners_v2/classes.rb', line 736

def update!(**args)
  @lead = args[:lead] if args.key?(:lead)
  @recaptcha_status = args[:recaptcha_status] if args.key?(:recaptcha_status)
  @response_metadata = args[:response_metadata] if args.key?(:response_metadata)
end