@@ -27,14 +27,22 @@ type iSnapshot interface {
2727	GetDeltaRecordCount () * int64 
2828	SetId (v  int64 ) * Snapshot 
2929	GetId () * int64 
30+ 	SetIdString (v  string ) * Snapshot 
31+ 	GetIdString () * string 
3032	SetIndexManifest (v  string ) * Snapshot 
3133	GetIndexManifest () * string 
3234	SetLogOffsets (v  map [string ]* int64 ) * Snapshot 
3335	GetLogOffsets () map [string ]* int64 
36+ 	SetParentIdString (v  string ) * Snapshot 
37+ 	GetParentIdString () * string 
3438	SetSchemaId (v  int64 ) * Snapshot 
3539	GetSchemaId () * int64 
40+ 	SetSequenceNumber (v  int64 ) * Snapshot 
41+ 	GetSequenceNumber () * int64 
3642	SetStatistics (v  string ) * Snapshot 
3743	GetStatistics () * string 
44+ 	SetSummary (v  map [string ]* string ) * Snapshot 
45+ 	GetSummary () map [string ]* string 
3846	SetTimeMillis (v  int64 ) * Snapshot 
3947	GetTimeMillis () * int64 
4048	SetTotalRecordCount (v  int64 ) * Snapshot 
@@ -49,20 +57,24 @@ type Snapshot struct {
4957	BaseManifestList  * string  `json:"baseManifestList,omitempty" xml:"baseManifestList,omitempty"` 
5058	// if can be null: 
5159	// true 
52- 	ChangelogManifestList  * string  `json:"changelogManifestList,omitempty" xml:"changelogManifestList,omitempty"` 
53- 	ChangelogRecordCount  * int64  `json:"changelogRecordCount,omitempty" xml:"changelogRecordCount,omitempty"` 
54- 	CommitIdentifier  * int64  `json:"commitIdentifier,omitempty" xml:"commitIdentifier,omitempty"` 
55- 	CommitKind  * string  `json:"commitKind,omitempty" xml:"commitKind,omitempty"` 
56- 	CommitUser  * string  `json:"commitUser,omitempty" xml:"commitUser,omitempty"` 
57- 	DeltaManifestList  * string  `json:"deltaManifestList,omitempty" xml:"deltaManifestList,omitempty"` 
58- 	DeltaRecordCount  * int64  `json:"deltaRecordCount,omitempty" xml:"deltaRecordCount,omitempty"` 
59- 	Id  * int64  `json:"id,omitempty" xml:"id,omitempty"` 
60- 	IndexManifest  * string  `json:"indexManifest,omitempty" xml:"indexManifest,omitempty"` 
61- 	LogOffsets  map [string ]* int64  `json:"logOffsets,omitempty" xml:"logOffsets,omitempty"` 
62- 	SchemaId  * int64  `json:"schemaId,omitempty" xml:"schemaId,omitempty"` 
63- 	Statistics  * string  `json:"statistics,omitempty" xml:"statistics,omitempty"` 
64- 	TimeMillis  * int64  `json:"timeMillis,omitempty" xml:"timeMillis,omitempty"` 
65- 	TotalRecordCount  * int64  `json:"totalRecordCount,omitempty" xml:"totalRecordCount,omitempty"` 
60+ 	ChangelogManifestList  * string  `json:"changelogManifestList,omitempty" xml:"changelogManifestList,omitempty"` 
61+ 	ChangelogRecordCount  * int64  `json:"changelogRecordCount,omitempty" xml:"changelogRecordCount,omitempty"` 
62+ 	CommitIdentifier  * int64  `json:"commitIdentifier,omitempty" xml:"commitIdentifier,omitempty"` 
63+ 	CommitKind  * string  `json:"commitKind,omitempty" xml:"commitKind,omitempty"` 
64+ 	CommitUser  * string  `json:"commitUser,omitempty" xml:"commitUser,omitempty"` 
65+ 	DeltaManifestList  * string  `json:"deltaManifestList,omitempty" xml:"deltaManifestList,omitempty"` 
66+ 	DeltaRecordCount  * int64  `json:"deltaRecordCount,omitempty" xml:"deltaRecordCount,omitempty"` 
67+ 	Id  * int64  `json:"id,omitempty" xml:"id,omitempty"` 
68+ 	IdString  * string  `json:"idString,omitempty" xml:"idString,omitempty"` 
69+ 	IndexManifest  * string  `json:"indexManifest,omitempty" xml:"indexManifest,omitempty"` 
70+ 	LogOffsets  map [string ]* int64  `json:"logOffsets,omitempty" xml:"logOffsets,omitempty"` 
71+ 	ParentIdString  * string  `json:"parentIdString,omitempty" xml:"parentIdString,omitempty"` 
72+ 	SchemaId  * int64  `json:"schemaId,omitempty" xml:"schemaId,omitempty"` 
73+ 	SequenceNumber  * int64  `json:"sequenceNumber,omitempty" xml:"sequenceNumber,omitempty"` 
74+ 	Statistics  * string  `json:"statistics,omitempty" xml:"statistics,omitempty"` 
75+ 	Summary  map [string ]* string  `json:"summary,omitempty" xml:"summary,omitempty"` 
76+ 	TimeMillis  * int64  `json:"timeMillis,omitempty" xml:"timeMillis,omitempty"` 
77+ 	TotalRecordCount  * int64  `json:"totalRecordCount,omitempty" xml:"totalRecordCount,omitempty"` 
6678	// if can be null: 
6779	// true 
6880	Version  * int32  `json:"version,omitempty" xml:"version,omitempty"` 
@@ -113,6 +125,10 @@ func (s *Snapshot) GetId() *int64 {
113125	return  s .Id 
114126}
115127
128+ func  (s  * Snapshot ) GetIdString () * string  {
129+ 	return  s .IdString 
130+ }
131+ 116132func  (s  * Snapshot ) GetIndexManifest () * string  {
117133	return  s .IndexManifest 
118134}
@@ -121,14 +137,26 @@ func (s *Snapshot) GetLogOffsets() map[string]*int64 {
121137	return  s .LogOffsets 
122138}
123139
140+ func  (s  * Snapshot ) GetParentIdString () * string  {
141+ 	return  s .ParentIdString 
142+ }
143+ 124144func  (s  * Snapshot ) GetSchemaId () * int64  {
125145	return  s .SchemaId 
126146}
127147
148+ func  (s  * Snapshot ) GetSequenceNumber () * int64  {
149+ 	return  s .SequenceNumber 
150+ }
151+ 128152func  (s  * Snapshot ) GetStatistics () * string  {
129153	return  s .Statistics 
130154}
131155
156+ func  (s  * Snapshot ) GetSummary () map [string ]* string  {
157+ 	return  s .Summary 
158+ }
159+ 132160func  (s  * Snapshot ) GetTimeMillis () * int64  {
133161	return  s .TimeMillis 
134162}
@@ -190,6 +218,11 @@ func (s *Snapshot) SetId(v int64) *Snapshot {
190218	return  s 
191219}
192220
221+ func  (s  * Snapshot ) SetIdString (v  string ) * Snapshot  {
222+ 	s .IdString  =  & v 
223+ 	return  s 
224+ }
225+ 193226func  (s  * Snapshot ) SetIndexManifest (v  string ) * Snapshot  {
194227	s .IndexManifest  =  & v 
195228	return  s 
@@ -200,16 +233,31 @@ func (s *Snapshot) SetLogOffsets(v map[string]*int64) *Snapshot {
200233	return  s 
201234}
202235
236+ func  (s  * Snapshot ) SetParentIdString (v  string ) * Snapshot  {
237+ 	s .ParentIdString  =  & v 
238+ 	return  s 
239+ }
240+ 203241func  (s  * Snapshot ) SetSchemaId (v  int64 ) * Snapshot  {
204242	s .SchemaId  =  & v 
205243	return  s 
206244}
207245
246+ func  (s  * Snapshot ) SetSequenceNumber (v  int64 ) * Snapshot  {
247+ 	s .SequenceNumber  =  & v 
248+ 	return  s 
249+ }
250+ 208251func  (s  * Snapshot ) SetStatistics (v  string ) * Snapshot  {
209252	s .Statistics  =  & v 
210253	return  s 
211254}
212255
256+ func  (s  * Snapshot ) SetSummary (v  map [string ]* string ) * Snapshot  {
257+ 	s .Summary  =  v 
258+ 	return  s 
259+ }
260+ 213261func  (s  * Snapshot ) SetTimeMillis (v  int64 ) * Snapshot  {
214262	s .TimeMillis  =  & v 
215263	return  s 
0 commit comments