Class: Google::Apis::YoutubeV3::ThirdPartyLink
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ThirdPartyLink
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb
Overview
A third party account link resource represents a link between a YouTube account or a channel and an account on a third-party service.
Instance Attribute Summary collapse
-
#etag ⇒ String
Etag of this resource Corresponds to the JSON property
etag
. -
#kind ⇒ String
Identifies what kind of resource this is.
-
#linking_token ⇒ String
The linking_token identifies a YouTube account and channel with which the third party account is linked.
-
#snippet ⇒ Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
Basic information about a third party account link, including its type and type-specific information.
-
#status ⇒ Google::Apis::YoutubeV3::ThirdPartyLinkStatus
The third-party link status object contains information about the status of the link.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ThirdPartyLink
constructor
A new instance of ThirdPartyLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ThirdPartyLink
Returns a new instance of ThirdPartyLink.
7381 7382 7383 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7381 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource
Corresponds to the JSON property etag
7355 7356 7357 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7355 def etag @etag end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
thirdPartyLink".
Corresponds to the JSON property kind
7361 7362 7363 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7361 def kind @kind end |
#linking_token ⇒ String
The linking_token identifies a YouTube account and channel with which the
third party account is linked.
Corresponds to the JSON property linkingToken
7367 7368 7369 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7367 def linking_token @linking_token end |
#snippet ⇒ Google::Apis::YoutubeV3::ThirdPartyLinkSnippet
Basic information about a third party account link, including its type and
type-specific information.
Corresponds to the JSON property snippet
7373 7374 7375 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7373 def snippet @snippet end |
#status ⇒ Google::Apis::YoutubeV3::ThirdPartyLinkStatus
The third-party link status object contains information about the status of
the link.
Corresponds to the JSON property status
7379 7380 7381 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7379 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7386 7387 7388 7389 7390 7391 7392 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 7386 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @linking_token = args[:linking_token] if args.key?(:linking_token) @snippet = args[:snippet] if args.key?(:snippet) @status = args[:status] if args.key?(:status) end |