Class: Google::Apis::PartnersV2::CreateLeadResponse
- Inherits:
-
Object
- Object
- Google::Apis::PartnersV2::CreateLeadResponse
- 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
-
#lead ⇒ Google::Apis::PartnersV2::Lead
A lead resource that represents an advertiser contact for a
Company
. -
#recaptcha_status ⇒ String
The outcome of reCaptcha validation.
-
#response_metadata ⇒ Google::Apis::PartnersV2::ResponseMetadata
Common data that is in each API response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateLeadResponse
constructor
A new instance of CreateLeadResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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
#lead ⇒ Google::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_status ⇒ String
The outcome of reCaptcha
validation.
Corresponds to the JSON property recaptchaStatus
724 725 726 |
# File 'generated/google/apis/partners_v2/classes.rb', line 724 def recaptcha_status @recaptcha_status end |
#response_metadata ⇒ Google::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 |