leopard8352
2023-12-04 8871a733498c8d717714b83bb096b7738224541a
提交 | 用户 | 时间
8871a7 1 // Fill out your copyright notice in the Description page of Project Settings.
L 2
3 #pragma once
4
5 #include "CoreMinimal.h"
6 #include "UObject/Object.h"
7 #include "TapCDKeyResponse.generated.h"
8
9 USTRUCT(BlueprintType)
10 struct TAPTAP_API FTapCDKeyResponseContent
11 {
12     GENERATED_BODY()
13 public:
14     UPROPERTY(EditAnywhere,BlueprintReadWrite)
15     FString name;
16     UPROPERTY(EditAnywhere,BlueprintReadWrite)
17     int64 number = -1;
18 };
19 /**
20  * 
21  */
22 USTRUCT(BlueprintType)
23 struct TAPTAP_API FTapCDKeyResponse
24 {
25     GENERATED_BODY()
26 public:
27     UPROPERTY(EditAnywhere,BlueprintReadWrite)
28     FString activity_id;
29     UPROPERTY(EditAnywhere,BlueprintReadWrite)
30     FString nonce_str;
31     UPROPERTY(EditAnywhere,BlueprintReadWrite)
32     int64 timestamp = -1;
33     UPROPERTY(EditAnywhere,BlueprintReadWrite)
34     TArray<FTapCDKeyResponseContent> content_obj;
35     UPROPERTY(EditAnywhere,BlueprintReadWrite)
36     int64 error = -1;
37     UPROPERTY(EditAnywhere,BlueprintReadWrite)
38     bool success = false;
39     UPROPERTY(EditAnywhere,BlueprintReadWrite)
40     FString message;
41 };