FriendReqInfo
Data structure
UINTLFriendReqType: friend request type
UENUM(BlueprintType)
enum class UINTLFriendReqType :uint8 {
kReqText = 0 UMETA(DisplayName = "TEXT"),
kReqLink = 1 UMETA(DisplayName = "LINK"),
kReqImage = 2 UMETA(DisplayName = "IMAGE"),
kReqInvite = 3 UMETA(DisplayName = "INVITE"),
kReqVideo = 4 UMETA(DisplayName = "VIDEO")
};
FINTLFriendReqInfo: friend info<
Parameter | Type | Description | Remark |
---|---|---|---|
Type | int32 | Friend request type | Required for sharing content Optional for adding friends |
User | FString | User ID or OpenID Enter the OpenID of the specified user Share not supported | Required |
Title | FString | Title of shared content | Required |
Description | FString | Description Briefly describe the purpose of sharing | Optional |
ImagePath | FString | Picture path Local path (recommended) or URL of the picture | Optional |
ThumbPath | FString | Thumbnail path Local path (recommended) or URL of the thumbnail | Optional |
MediaPath | FString | Media (music or video) Local path of the media file | Optional |
Link | FString | Link Hyperlink of the picture, music, or video | Optional |
ExtraJson | FString | The extended field | Optional |