1 <?xml version="1.0" encoding="utf-8" ?>
4 <time><% currentSone.time></time>
5 <protocol-version>0</protocol-version>
9 <version><% version|xml></version>
13 <first-name><% currentSone.profile.firstName|xml></first-name>
14 <middle-name><% currentSone.profile.middleName|xml></middle-name>
15 <last-name><% currentSone.profile.lastName|xml></last-name>
16 <birth-day><% currentSone.profile.birthDay|xml></birth-day>
17 <birth-month><% currentSone.profile.birthMonth|xml></birth-month>
18 <birth-year><% currentSone.profile.birthYear|xml></birth-year>
19 <avatar><%currentSone.profile.avatar|xml></avatar>
21 <%foreach currentSone.profile.fields field>
23 <field-name><% field.name|xml></field-name>
24 <field-value><% field.value|xml></field-value>
31 <%foreach currentSone.posts post>
33 <id><% post.id|xml></id>
34 <recipient><%if post.recipientId.present><% post.recipientId.get|xml><%/if></recipient>
35 <time><% post.time></time>
36 <text><% post.text|xml></text>
42 <%foreach currentSone.replies reply>
45 <post-id><% reply.postId|xml></post-id>
46 <time><% reply.time></time>
47 <text><% reply.text|xml></text>
53 <%foreach currentSone.likedPostIds postId>
54 <post-like><% postId|xml></post-like>
59 <%foreach currentSone.likedReplyIds replyId>
60 <reply-like><% replyId|xml></reply-like>
64 <%foreach currentSone.albums album>
69 <id><%album.id|xml></id>
70 <%if !album.parent.root>
71 <parent><%album.parent.id|xml></parent>
73 <title><%album.title|xml></title>
74 <description><%album.description|xml></description>
75 <album-image><%album.albumImage.id|xml></album-image>
76 <%foreach album.images image>
81 <id><%image.id|xml></id>
82 <creation-time><%image.creationTime|xml></creation-time>
83 <key><%image.key|xml></key>
84 <title><%image.title|xml></title>
85 <description><%image.description|xml></description>
86 <width><%image.width|xml></width>
87 <height><%image.height|xml></height>