Struct google_youtube3::LiveChatMessageMethods [] [src]

pub struct LiveChatMessageMethods<'a, C, A> where C: 'a, A: 'a { /* fields omitted */ }

A builder providing access to all methods supported on liveChatMessage resources. It is not used directly, but through the YouTube hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_youtube3 as youtube3;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use youtube3::YouTube;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = YouTube::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)`, `insert(...)` and `list(...)`
// to build up your call.
let rb = hub.live_chat_messages();

Methods

impl<'a, C, A> LiveChatMessageMethods<'a, C, A>
[src]

Create a builder to help you perform the following task:

Lists live chat messages for a specific chat.

Arguments

  • liveChatId - The liveChatId parameter specifies the ID of the chat whose messages will be returned.
  • part - The part parameter specifies the liveChatComment resource parts that the API response will include. Supported values are id and snippet.

Create a builder to help you perform the following task:

Deletes a chat message.

Arguments

  • id - The id parameter specifies the YouTube chat message ID of the resource that is being deleted.

Create a builder to help you perform the following task:

Adds a message to a live chat.

Arguments

  • request - No description provided.

Trait Implementations

impl<'a, C, A> MethodsBuilder for LiveChatMessageMethods<'a, C, A>
[src]