2026-08-12 23:58:31 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
2026-08-29 11:33:01 +03:00
|
|
|
using System;
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models.ProjectStorage;
|
|
|
|
|
|
|
|
|
|
public class ProjectStorageItem
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("data")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Data { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("expiresAt")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public DateTimeOffset? ExpiresAt { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("id")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Id { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("readPermission")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? ReadPermission { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("size")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public long? Size { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("type")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Type { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("updatedAt")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public DateTimeOffset? UpdatedAt { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("version")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public long? Version { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("writePermission")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? WritePermission { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
}
|