Files
rudder-csharp-sdk/Stores/Offer.cs
T

35 lines
777 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
using System.Collections.Generic;
namespace RudderSdk.Core.Models.Stores;
public class Offer
{
[JsonProperty("contents")]
2026-08-29 11:33:01 +03:00
public List<OfferContent>? Contents { 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("id")]
2026-08-29 11:33:01 +03:00
public string? Id { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("maxPurchases")]
2026-08-29 11:33:01 +03:00
public int? MaxPurchases { 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("price")]
2026-08-29 11:33:01 +03:00
public OfferPrice? Price { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("slug")]
public string? Slug { 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
}