Class: Google::Apis::AdsensehostV4_1::AssociationSession

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AssociationSession

Returns a new instance of AssociationSession.



574
575
576
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 574

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

Instance Attribute Details

#account_idString

Hosted account id of the associated publisher after association. Present if status is ACCEPTED. Corresponds to the JSON property accountId

Returns:

  • (String)


528
529
530
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 528

def 
  @account_id
end

#idString

Unique identifier of this association session. Corresponds to the JSON property id

Returns:

  • (String)


533
534
535
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 533

def id
  @id
end

#kindString

Kind of resource this is, in this case adsensehost#associationSession. Corresponds to the JSON property kind

Returns:

  • (String)


538
539
540
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 538

def kind
  @kind
end

#product_codesArray<String>

The products to associate with the user. Options: AFC, AFG, AFV, AFS ( deprecated), AFMC (deprecated) Corresponds to the JSON property productCodes

Returns:

  • (Array<String>)


544
545
546
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 544

def product_codes
  @product_codes
end

#redirect_urlString

Redirect URL of this association session. Used to redirect users into the AdSense association flow. Corresponds to the JSON property redirectUrl

Returns:

  • (String)


550
551
552
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 550

def redirect_url
  @redirect_url
end

#statusString

Status of the completed association, available once the association callback token has been verified. One of ACCEPTED, REJECTED, or ERROR. Corresponds to the JSON property status

Returns:

  • (String)


556
557
558
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 556

def status
  @status
end

#user_localeString

The preferred locale of the user themselves when going through the AdSense association flow. Corresponds to the JSON property userLocale

Returns:

  • (String)


562
563
564
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 562

def user_locale
  @user_locale
end

#website_localeString

The locale of the user's hosted website. Corresponds to the JSON property websiteLocale

Returns:

  • (String)


567
568
569
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 567

def website_locale
  @website_locale
end

#website_urlString

The URL of the user's hosted website. Corresponds to the JSON property websiteUrl

Returns:

  • (String)


572
573
574
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 572

def website_url
  @website_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



579
580
581
582
583
584
585
586
587
588
589
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 579

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @product_codes = args[:product_codes] if args.key?(:product_codes)
  @redirect_url = args[:redirect_url] if args.key?(:redirect_url)
  @status = args[:status] if args.key?(:status)
  @user_locale = args[:user_locale] if args.key?(:user_locale)
  @website_locale = args[:website_locale] if args.key?(:website_locale)
  @website_url = args[:website_url] if args.key?(:website_url)
end