@@ -1854,10 +1854,10 @@ type DeviceSessionLogInfo struct {
18541854 IpAddress string `json:"ip_address,omitempty"`
18551855 // Created : The time this session was created. Might be missing due to
18561856 // historical data gap.
1857- Created time.Time `json:"created,omitempty"`
1857+ Created * time.Time `json:"created,omitempty"`
18581858 // Updated : The time of the last activity from this session. Might be
18591859 // missing due to historical data gap.
1860- Updated time.Time `json:"updated,omitempty"`
1860+ Updated * time.Time `json:"updated,omitempty"`
18611861}
18621862
18631863// NewDeviceSessionLogInfo returns a new DeviceSessionLogInfo instance
@@ -13228,7 +13228,7 @@ func NewFileRequestCreateType(Description string) *FileRequestCreateType {
1322813228type FileRequestDeadline struct {
1322913229 // Deadline : The deadline for this file request. Might be missing due to
1323013230 // historical data gap.
13231- Deadline time.Time `json:"deadline,omitempty"`
13231+ Deadline * time.Time `json:"deadline,omitempty"`
1323213232 // AllowLateUploads : If set, allow uploads after the deadline has passed.
1323313233 // Might be missing due to historical data gap.
1323413234 AllowLateUploads string `json:"allow_late_uploads,omitempty"`
@@ -15134,7 +15134,7 @@ type LegalHoldsActivateAHoldDetails struct {
1513415134 // StartDate : Hold start date.
1513515135 StartDate time.Time `json:"start_date"`
1513615136 // EndDate : Hold end date.
15137- EndDate time.Time `json:"end_date,omitempty"`
15137+ EndDate * time.Time `json:"end_date,omitempty"`
1513815138}
1513915139
1514015140// NewLegalHoldsActivateAHoldDetails returns a new LegalHoldsActivateAHoldDetails instance
@@ -19809,7 +19809,7 @@ func NewSharedContentAddInviteesType(Description string) *SharedContentAddInvite
1980919809type SharedContentAddLinkExpiryDetails struct {
1981019810 // NewValue : New shared content link expiration date. Might be missing due
1981119811 // to historical data gap.
19812- NewValue time.Time `json:"new_value,omitempty"`
19812+ NewValue * time.Time `json:"new_value,omitempty"`
1981319813}
1981419814
1981519815// NewSharedContentAddLinkExpiryDetails returns a new SharedContentAddLinkExpiryDetails instance
@@ -19979,10 +19979,10 @@ func NewSharedContentChangeLinkAudienceType(Description string) *SharedContentCh
1997919979type SharedContentChangeLinkExpiryDetails struct {
1998019980 // NewValue : New shared content link expiration date. Might be missing due
1998119981 // to historical data gap.
19982- NewValue time.Time `json:"new_value,omitempty"`
19982+ NewValue * time.Time `json:"new_value,omitempty"`
1998319983 // PreviousValue : Previous shared content link expiration date. Might be
1998419984 // missing due to historical data gap.
19985- PreviousValue time.Time `json:"previous_value,omitempty"`
19985+ PreviousValue * time.Time `json:"previous_value,omitempty"`
1998619986}
1998719987
1998819988// NewSharedContentChangeLinkExpiryDetails returns a new SharedContentChangeLinkExpiryDetails instance
@@ -20234,7 +20234,7 @@ func NewSharedContentRemoveInviteesType(Description string) *SharedContentRemove
2023420234type SharedContentRemoveLinkExpiryDetails struct {
2023520235 // PreviousValue : Previous shared content link expiration date. Might be
2023620236 // missing due to historical data gap.
20237- PreviousValue time.Time `json:"previous_value,omitempty"`
20237+ PreviousValue * time.Time `json:"previous_value,omitempty"`
2023820238}
2023920239
2024020240// NewSharedContentRemoveLinkExpiryDetails returns a new SharedContentRemoveLinkExpiryDetails instance
@@ -20778,10 +20778,10 @@ func NewSharedLinkAddExpiryType(Description string) *SharedLinkAddExpiryType {
2077820778type SharedLinkChangeExpiryDetails struct {
2077920779 // NewValue : New shared link expiration date. Might be missing due to
2078020780 // historical data gap.
20781- NewValue time.Time `json:"new_value,omitempty"`
20781+ NewValue * time.Time `json:"new_value,omitempty"`
2078220782 // PreviousValue : Previous shared link expiration date. Might be missing
2078320783 // due to historical data gap.
20784- PreviousValue time.Time `json:"previous_value,omitempty"`
20784+ PreviousValue * time.Time `json:"previous_value,omitempty"`
2078520785}
2078620786
2078720787// NewSharedLinkChangeExpiryDetails returns a new SharedLinkChangeExpiryDetails instance
@@ -20940,7 +20940,7 @@ func NewSharedLinkDownloadType(Description string) *SharedLinkDownloadType {
2094020940type SharedLinkRemoveExpiryDetails struct {
2094120941 // PreviousValue : Previous shared link expiration date. Might be missing
2094220942 // due to historical data gap.
20943- PreviousValue time.Time `json:"previous_value,omitempty"`
20943+ PreviousValue * time.Time `json:"previous_value,omitempty"`
2094420944}
2094520945
2094620946// NewSharedLinkRemoveExpiryDetails returns a new SharedLinkRemoveExpiryDetails instance
@@ -20971,7 +20971,7 @@ type SharedLinkSettingsAddExpirationDetails struct {
2097120971 SharedContentLink string `json:"shared_content_link,omitempty"`
2097220972 // NewValue : New shared content link expiration date. Might be missing due
2097320973 // to historical data gap.
20974- NewValue time.Time `json:"new_value,omitempty"`
20974+ NewValue * time.Time `json:"new_value,omitempty"`
2097520975}
2097620976
2097720977// NewSharedLinkSettingsAddExpirationDetails returns a new SharedLinkSettingsAddExpirationDetails instance
@@ -21121,10 +21121,10 @@ type SharedLinkSettingsChangeExpirationDetails struct {
2112121121 SharedContentLink string `json:"shared_content_link,omitempty"`
2112221122 // NewValue : New shared content link expiration date. Might be missing due
2112321123 // to historical data gap.
21124- NewValue time.Time `json:"new_value,omitempty"`
21124+ NewValue * time.Time `json:"new_value,omitempty"`
2112521125 // PreviousValue : Previous shared content link expiration date. Might be
2112621126 // missing due to historical data gap.
21127- PreviousValue time.Time `json:"previous_value,omitempty"`
21127+ PreviousValue * time.Time `json:"previous_value,omitempty"`
2112821128}
2112921129
2113021130// NewSharedLinkSettingsChangeExpirationDetails returns a new SharedLinkSettingsChangeExpirationDetails instance
@@ -21185,7 +21185,7 @@ type SharedLinkSettingsRemoveExpirationDetails struct {
2118521185 SharedContentLink string `json:"shared_content_link,omitempty"`
2118621186 // PreviousValue : Previous shared link expiration date. Might be missing
2118721187 // due to historical data gap.
21188- PreviousValue time.Time `json:"previous_value,omitempty"`
21188+ PreviousValue * time.Time `json:"previous_value,omitempty"`
2118921189}
2119021190
2119121191// NewSharedLinkSettingsRemoveExpirationDetails returns a new SharedLinkSettingsRemoveExpirationDetails instance
0 commit comments