package com.catchnotes.api;
import java.io.File;
public String id;
public String note_id;
public long created_at;
public String content_type;
public String src;
public long size;
public String filename;
public boolean voice_hint;
public File data;
id = "";
note_id = "";
created_at = 0;
content_type = "";
src = "";
size = 0;
data = null;
filename = "";
voice_hint = false;
}
return "apiId=" + id + " nodeId=" + note_id + " created_at=" + created_at +
" type=" + content_type + " src=" + src + " size=" + size +
" filename=" + filename + " voice_hint=" + voice_hint + " data=" +
((data == null) ? "null" : data.getPath());
}
}