Add ProjectStorageService and generated ProjectStorage models

This commit is contained in:
edmand46
2026-08-12 23:58:31 +03:00
parent 8cf738d9f0
commit 91c3d46ceb
6 changed files with 153 additions and 0 deletions
@@ -0,0 +1,16 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.ProjectStorage;
public class UpdateProjectStorageRequest
{
[JsonProperty("idempotencyKey")]
public string IdempotencyKey { get; set; }
[JsonProperty("items")]
public List<ProjectStorageUpdateItem> Items { get; set; }
}