1
2
3
4
5
6
7
8
9
10
11
12
| global class CdpUser {
| global String id;
| global String name;
| global String profilePhotoUrl;
| global CdpUser() { }
| global Object clone() { }
| global Boolean equals(Object obj) { }
| global Double getBuildVersion() { }
| global Integer hashCode() { }
| global String toString() { }
|
| }
|
|