@@ -34,7 +34,7 @@ func (r *AddRumReplaySessionToPlaylistOptionalParameters) WithDataSource(dataSou
3434
3535// AddRumReplaySessionToPlaylist Add RUM replay session to playlist.
3636// Add a session to a playlist.
37- func (a * RumReplayPlaylistsApi ) AddRumReplaySessionToPlaylist (ctx _context.Context , ts int64 , playlistId int32 , sessionId string , o ... AddRumReplaySessionToPlaylistOptionalParameters ) (PlaylistsSession , * _nethttp.Response , error ) {
37+ func (a * RumReplayPlaylistsApi ) AddRumReplaySessionToPlaylist (ctx _context.Context , ts int64 , playlistId int64 , sessionId string , o ... AddRumReplaySessionToPlaylistOptionalParameters ) (PlaylistsSession , * _nethttp.Response , error ) {
3838 var (
3939 localVarHTTPMethod = _nethttp .MethodPut
4040 localVarPostBody interface {}
@@ -125,7 +125,7 @@ func (a *RumReplayPlaylistsApi) AddRumReplaySessionToPlaylist(ctx _context.Conte
125125
126126// BulkRemoveRumReplayPlaylistSessions Bulk remove RUM replay playlist sessions.
127127// Remove sessions from a playlist.
128- func (a * RumReplayPlaylistsApi ) BulkRemoveRumReplayPlaylistSessions (ctx _context.Context , playlistId int32 , body SessionIdArray ) (* _nethttp.Response , error ) {
128+ func (a * RumReplayPlaylistsApi ) BulkRemoveRumReplayPlaylistSessions (ctx _context.Context , playlistId int64 , body SessionIdArray ) (* _nethttp.Response , error ) {
129129 var (
130130 localVarHTTPMethod = _nethttp .MethodDelete
131131 localVarPostBody interface {}
@@ -276,7 +276,7 @@ func (a *RumReplayPlaylistsApi) CreateRumReplayPlaylist(ctx _context.Context, bo
276276
277277// DeleteRumReplayPlaylist Delete RUM replay playlist.
278278// Delete a playlist.
279- func (a * RumReplayPlaylistsApi ) DeleteRumReplayPlaylist (ctx _context.Context , playlistId int32 ) (* _nethttp.Response , error ) {
279+ func (a * RumReplayPlaylistsApi ) DeleteRumReplayPlaylist (ctx _context.Context , playlistId int64 ) (* _nethttp.Response , error ) {
280280 var (
281281 localVarHTTPMethod = _nethttp .MethodDelete
282282 localVarPostBody interface {}
@@ -344,7 +344,7 @@ func (a *RumReplayPlaylistsApi) DeleteRumReplayPlaylist(ctx _context.Context, pl
344344
345345// GetRumReplayPlaylist Get RUM replay playlist.
346346// Get a playlist.
347- func (a * RumReplayPlaylistsApi ) GetRumReplayPlaylist (ctx _context.Context , playlistId int32 ) (Playlist , * _nethttp.Response , error ) {
347+ func (a * RumReplayPlaylistsApi ) GetRumReplayPlaylist (ctx _context.Context , playlistId int64 ) (Playlist , * _nethttp.Response , error ) {
348348 var (
349349 localVarHTTPMethod = _nethttp .MethodGet
350350 localVarPostBody interface {}
@@ -422,8 +422,8 @@ func (a *RumReplayPlaylistsApi) GetRumReplayPlaylist(ctx _context.Context, playl
422422
423423// ListRumReplayPlaylistSessionsOptionalParameters holds optional parameters for ListRumReplayPlaylistSessions.
424424type ListRumReplayPlaylistSessionsOptionalParameters struct {
425- PageNumber * int32
426- PageSize * int32
425+ PageNumber * int64
426+ PageSize * int64
427427}
428428
429429// NewListRumReplayPlaylistSessionsOptionalParameters creates an empty struct for parameters.
@@ -433,20 +433,20 @@ func NewListRumReplayPlaylistSessionsOptionalParameters() *ListRumReplayPlaylist
433433}
434434
435435// WithPageNumber sets the corresponding parameter name and returns the struct.
436- func (r * ListRumReplayPlaylistSessionsOptionalParameters ) WithPageNumber (pageNumber int32 ) * ListRumReplayPlaylistSessionsOptionalParameters {
436+ func (r * ListRumReplayPlaylistSessionsOptionalParameters ) WithPageNumber (pageNumber int64 ) * ListRumReplayPlaylistSessionsOptionalParameters {
437437 r .PageNumber = & pageNumber
438438 return r
439439}
440440
441441// WithPageSize sets the corresponding parameter name and returns the struct.
442- func (r * ListRumReplayPlaylistSessionsOptionalParameters ) WithPageSize (pageSize int32 ) * ListRumReplayPlaylistSessionsOptionalParameters {
442+ func (r * ListRumReplayPlaylistSessionsOptionalParameters ) WithPageSize (pageSize int64 ) * ListRumReplayPlaylistSessionsOptionalParameters {
443443 r .PageSize = & pageSize
444444 return r
445445}
446446
447447// ListRumReplayPlaylistSessions List RUM replay playlist sessions.
448448// List sessions in a playlist.
449- func (a * RumReplayPlaylistsApi ) ListRumReplayPlaylistSessions (ctx _context.Context , playlistId int32 , o ... ListRumReplayPlaylistSessionsOptionalParameters ) (PlaylistsSessionArray , * _nethttp.Response , error ) {
449+ func (a * RumReplayPlaylistsApi ) ListRumReplayPlaylistSessions (ctx _context.Context , playlistId int64 , o ... ListRumReplayPlaylistSessionsOptionalParameters ) (PlaylistsSessionArray , * _nethttp.Response , error ) {
450450 var (
451451 localVarHTTPMethod = _nethttp .MethodGet
452452 localVarPostBody interface {}
@@ -540,8 +540,8 @@ func (a *RumReplayPlaylistsApi) ListRumReplayPlaylistSessions(ctx _context.Conte
540540type ListRumReplayPlaylistsOptionalParameters struct {
541541 FilterCreatedByUuid * string
542542 FilterQuery * string
543- PageNumber * int32
544- PageSize * int32
543+ PageNumber * int64
544+ PageSize * int64
545545}
546546
547547// NewListRumReplayPlaylistsOptionalParameters creates an empty struct for parameters.
@@ -563,13 +563,13 @@ func (r *ListRumReplayPlaylistsOptionalParameters) WithFilterQuery(filterQuery s
563563}
564564
565565// WithPageNumber sets the corresponding parameter name and returns the struct.
566- func (r * ListRumReplayPlaylistsOptionalParameters ) WithPageNumber (pageNumber int32 ) * ListRumReplayPlaylistsOptionalParameters {
566+ func (r * ListRumReplayPlaylistsOptionalParameters ) WithPageNumber (pageNumber int64 ) * ListRumReplayPlaylistsOptionalParameters {
567567 r .PageNumber = & pageNumber
568568 return r
569569}
570570
571571// WithPageSize sets the corresponding parameter name and returns the struct.
572- func (r * ListRumReplayPlaylistsOptionalParameters ) WithPageSize (pageSize int32 ) * ListRumReplayPlaylistsOptionalParameters {
572+ func (r * ListRumReplayPlaylistsOptionalParameters ) WithPageSize (pageSize int64 ) * ListRumReplayPlaylistsOptionalParameters {
573573 r .PageSize = & pageSize
574574 return r
575575}
@@ -673,7 +673,7 @@ func (a *RumReplayPlaylistsApi) ListRumReplayPlaylists(ctx _context.Context, o .
673673
674674// RemoveRumReplaySessionFromPlaylist Remove RUM replay session from playlist.
675675// Remove a session from a playlist.
676- func (a * RumReplayPlaylistsApi ) RemoveRumReplaySessionFromPlaylist (ctx _context.Context , playlistId int32 , sessionId string ) (* _nethttp.Response , error ) {
676+ func (a * RumReplayPlaylistsApi ) RemoveRumReplaySessionFromPlaylist (ctx _context.Context , playlistId int64 , sessionId string ) (* _nethttp.Response , error ) {
677677 var (
678678 localVarHTTPMethod = _nethttp .MethodDelete
679679 localVarPostBody interface {}
@@ -742,7 +742,7 @@ func (a *RumReplayPlaylistsApi) RemoveRumReplaySessionFromPlaylist(ctx _context.
742742
743743// UpdateRumReplayPlaylist Update RUM replay playlist.
744744// Update a playlist.
745- func (a * RumReplayPlaylistsApi ) UpdateRumReplayPlaylist (ctx _context.Context , playlistId int32 , body Playlist ) (Playlist , * _nethttp.Response , error ) {
745+ func (a * RumReplayPlaylistsApi ) UpdateRumReplayPlaylist (ctx _context.Context , playlistId int64 , body Playlist ) (Playlist , * _nethttp.Response , error ) {
746746 var (
747747 localVarHTTPMethod = _nethttp .MethodPut
748748 localVarPostBody interface {}
0 commit comments