30 lines
985 B
Go
30 lines
985 B
Go
package wakusync
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/status-im/status-go/multiaccounts/settings"
|
|
"github.com/status-im/status-go/protocol/protobuf"
|
|
)
|
|
|
|
type WakuBackedUpDataResponse struct {
|
|
FetchingDataProgress map[string]protobuf.FetchingBackedUpDataDetails // key represents the data/section backup details refer to
|
|
Profile *BackedUpProfile
|
|
Setting *settings.SyncSettingField
|
|
}
|
|
|
|
func (sfwr *WakuBackedUpDataResponse) MarshalJSON() ([]byte, error) {
|
|
responseItem := struct {
|
|
FetchingDataProgress map[string]FetchingBackupedDataDetails `json:"fetchingBackedUpDataProgress,omitempty"`
|
|
Profile *BackedUpProfile `json:"backedUpProfile,omitempty"`
|
|
Setting *settings.SyncSettingField `json:"backedUpSettings,omitempty"`
|
|
}{
|
|
Profile: sfwr.Profile,
|
|
Setting: sfwr.Setting,
|
|
}
|
|
|
|
responseItem.FetchingDataProgress = sfwr.FetchingBackedUpDataDetails()
|
|
|
|
return json.Marshal(responseItem)
|
|
}
|