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

15 lines
277 B
C#
Raw Permalink Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models.Stores;
public class OfferPrice
{
[JsonProperty("amount")]
2026-08-29 11:33:01 +03:00
public long? Amount { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("currency")]
2026-08-29 11:33:01 +03:00
public string? Currency { get; set; }
2026-08-12 14:04:55 +03:00
}