Files
rudder-csharp-sdk/RemoteConfig/RemoteConfig.cs
T

40 lines
899 B
C#
Raw Normal View History

2026-08-12 14:04:55 +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 14:04:55 +03:00
namespace RudderSdk.Core.Models.RemoteConfig;
public class RemoteConfig
{
[JsonProperty("active")]
2026-08-29 11:33:01 +03:00
public bool? Active { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("createdAt")]
2026-08-29 11:33:01 +03:00
public DateTimeOffset? CreatedAt { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("description")]
2026-08-29 11:33:01 +03:00
public string? Description { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("environment")]
2026-08-29 11:33:01 +03:00
public string? Environment { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("id")]
2026-08-29 11:33:01 +03:00
public string? Id { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("key")]
2026-08-29 11:33:01 +03:00
public string? Key { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("projectId")]
2026-08-29 11:33:01 +03:00
public string? ProjectId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("updatedAt")]
2026-08-29 11:33:01 +03:00
public DateTimeOffset? UpdatedAt { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("value")]
2026-08-29 11:33:01 +03:00
public string? Value { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("valueType")]
2026-08-29 11:33:01 +03:00
public string? ValueType { get; set; }
2026-08-12 14:04:55 +03:00
}