2026-08-12 14:04:55 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
2026-08-29 11:33:01 +03:00
|
|
|
using System;
|
2026-08-12 14:04:55 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models.Stores;
|
|
|
|
|
|
|
|
|
|
public class Store
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("createdAt")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public DateTimeOffset? CreatedAt { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("data")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public JToken? Data { 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("name")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Name { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("offers")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public List<Offer>? Offers { 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("scenarioId")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? ScenarioId { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("slug")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Slug { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("status")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Status { 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
|
|
|
|
|
|
|
|
}
|