com.google.api.services.youtube.model.ChannelContentDetails

Here are the examples of the java api class com.google.api.services.youtube.model.ChannelContentDetails taken from open source projects.

1. YoutubeChannelDeserializer#setContentDetails()

Project: incubator-streams
File: YoutubeChannelDeserializer.java
protected ChannelContentDetails setContentDetails(JsonNode node) {
    ChannelContentDetails contentDetails = new ChannelContentDetails();
    if (node == null) {
        return contentDetails;
    }
    if (node.findValue("googlePlusUserId") != null)
        contentDetails.setGooglePlusUserId(node.get("googlePlusUserId").asText());
    contentDetails.setRelatedPlaylists(setRelatedPlaylists(node.findValue("relatedPlaylists")));
    return contentDetails;
}