ea20ea6d51
LeaderboardSession.ClaimAsync sends onClaim. Generated DTOs live under Models/ with nullable wire fields. Remove incomplete duplicate type files.
37 lines
835 B
C#
37 lines
835 B
C#
// Code generated by apigen. DO NOT EDIT.
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
namespace RudderSdk.Core.Models.ProjectStorage;
|
|
|
|
public class ProjectStorageItem
|
|
{
|
|
[JsonProperty("data")]
|
|
public string? Data { get; set; }
|
|
|
|
[JsonProperty("expiresAt")]
|
|
public DateTimeOffset? ExpiresAt { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonProperty("readPermission")]
|
|
public string? ReadPermission { get; set; }
|
|
|
|
[JsonProperty("size")]
|
|
public long? Size { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonProperty("updatedAt")]
|
|
public DateTimeOffset? UpdatedAt { get; set; }
|
|
|
|
[JsonProperty("version")]
|
|
public long? Version { get; set; }
|
|
|
|
[JsonProperty("writePermission")]
|
|
public string? WritePermission { get; set; }
|
|
|
|
}
|