/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.com.developer.redu.models; import java.util.List; /** * * @author rafael.benzaquem.ufpa@gmail.com */ public class Lecture { public String created_at; public String name; public String position; public String type; public String id; public String rating; public String view_count; public String updated_at; public List<Link> links; @Override public String toString() { return "created_at:" + created_at + "\nname:" + name + "\nposition:" + position + "\ntype:" + type + "\nid:" + id + "\nrating:" + rating + "\nview_count:" + view_count + "\nupdated_at:" + updated_at + "\nlinks:" + links; } }