Class: Google::Apis::YoutubeV3::LiveChatBanSnippet

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LiveChatBanSnippet

Returns a new instance of LiveChatBanSnippet.



4081
4082
4083
# File 'lib/google/apis/youtube_v3/classes.rb', line 4081

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

Instance Attribute Details

#ban_duration_secondsFixnum

The duration of a ban, only filled if the ban has type TEMPORARY. Corresponds to the JSON property banDurationSeconds

Returns:

  • (Fixnum)


4064
4065
4066
# File 'lib/google/apis/youtube_v3/classes.rb', line 4064

def ban_duration_seconds
  @ban_duration_seconds
end

#banned_user_detailsGoogle::Apis::YoutubeV3::ChannelProfileDetails

Corresponds to the JSON property bannedUserDetails



4069
4070
4071
# File 'lib/google/apis/youtube_v3/classes.rb', line 4069

def banned_user_details
  @banned_user_details
end

#live_chat_idString

The chat this ban is pertinent to. Corresponds to the JSON property liveChatId

Returns:

  • (String)


4074
4075
4076
# File 'lib/google/apis/youtube_v3/classes.rb', line 4074

def live_chat_id
  @live_chat_id
end

#typeString

The type of ban. Corresponds to the JSON property type

Returns:

  • (String)


4079
4080
4081
# File 'lib/google/apis/youtube_v3/classes.rb', line 4079

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4086
4087
4088
4089
4090
4091
# File 'lib/google/apis/youtube_v3/classes.rb', line 4086

def update!(**args)
  @ban_duration_seconds = args[:ban_duration_seconds] if args.key?(:ban_duration_seconds)
  @banned_user_details = args[:banned_user_details] if args.key?(:banned_user_details)
  @live_chat_id = args[:live_chat_id] if args.key?(:live_chat_id)
  @type = args[:type] if args.key?(:type)
end