SDK for / Overview

XsollaStoreCurrencyFormat.h

1// Copyright 2024 Xsolla Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Engine/DataTable.h"
6
7#include "XsollaStoreCurrencyFormat.generated.h"
8
9USTRUCT(Blueprintable)
10struct XSOLLASTORE_API FXsollaStoreCurrencySymbol
11{
12GENERATED_USTRUCT_BODY()
13
14UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
15FString grapheme;
16
17UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
18FString format;
19
20UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
21bool rtl;
22
24: rtl(false){};
25};
26
27USTRUCT(Blueprintable)
28struct XSOLLASTORE_API FXsollaStoreCurrency : public FTableRowBase
29{
30GENERATED_USTRUCT_BODY()
31
32UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
33FString name;
34
35UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
36FString description;
37
38UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
39int32 fractionSize;
40
41UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Xsolla Currency")
43
45: fractionSize(0)
46{
47}
48};
Definition: XsollaStoreCurrencyFormat.h:29
Definition: XsollaStoreCurrencyFormat.h:11