Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
47 lines (30 loc) · 996 Bytes

File metadata and controls

47 lines (30 loc) · 996 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package be.neesconsulting.coco.source.eod.json;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class CashFlow {
public CashFlow(CashFlowRecordList quarterly, CashFlowRecordList yearly) {
this.quarterly = quarterly;
this.yearly = yearly;
}
public CashFlow() {
// TODO Auto-generated constructor stub
}
@SerializedName("quarterly")
// @Expose private CashFlowRecordList quarterly;
@Expose public CashFlowRecordList quarterly;
@SerializedName("yearly")
//@Expose private CashFlowRecordList yearly;
@Expose public CashFlowRecordList yearly;
public CashFlowRecordList getQuarterly() {
return quarterly;
}
public void setQuarterly(CashFlowRecordList quarterly) {
this.quarterly = quarterly;
}
public CashFlowRecordList getYearly() {
return yearly;
}
public void setYearly(CashFlowRecordList yearly) {
this.yearly = yearly;
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.