2026-08-12 23:58:31 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models.ProjectStorage;
|
|
|
|
|
|
|
|
|
|
public class UpdateProjectStorageRequest
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("idempotencyKey")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? IdempotencyKey { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("items")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public List<ProjectStorageUpdateItem>? Items { get; set; }
|
2026-08-12 23:58:31 +03:00
|
|
|
|
|
|
|
|
}
|