2026-08-12 14:04:55 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models.Storage;
|
|
|
|
|
|
|
|
|
|
public class GetStorageResponse
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("items")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public List<StorageItem>? Items { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("nextCursor")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? NextCursor { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
}
|