我正在尝试序列化Event
的Google日历GenericJson
。这是我的模特课:
public class LectureEvent {
private DateTime dateTime;
private List<Event> events; //google calendar event
}
这就是我使用ParametrizedType
的方式:
JsonAdapter<List<LectureEvent>> adapter = moshi.adapter(Types.newParameterizedType(List.class, LectureEvent.class));
adapter.toJson(lectureEvents);
但是我收到了这个错误:
无法序列化抽象类com.google.api.client.json.JsonFactory
知道如何序列化吗?