From c6c217f9e8b41ae3fac696c31bf71088d6194c9d Mon Sep 17 00:00:00 2001 From: John Sharpe Date: Fri, 17 May 2024 16:05:46 +0100 Subject: [PATCH] Added more detail (sometimes not present) to Fixed Database's Backup (#164) --- service/fixed/databases/model.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/service/fixed/databases/model.go b/service/fixed/databases/model.go index 03f8c5a..b8a8028 100644 --- a/service/fixed/databases/model.go +++ b/service/fixed/databases/model.go @@ -138,8 +138,10 @@ func (o Security) String() string { } type Backup struct { - Enabled *bool `json:"remoteBackupEnabled,omitempty"` - Status *string `json:"status,omitempty"` + Enabled *bool `json:"remoteBackupEnabled,omitempty"` + Status *string `json:"status,omitempty"` + Interval *string `json:"interval,omitempty"` + Destination *string `json:"destination,omitempty"` } func (o Backup) String() string {