class FriendshipsGetOptions
{
int? FriendId { get; set; }
string FriendName { get; set; }
int? UserId { get; set; }
string Username { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
FriendId |
int? |
Either the FriendId or the FriendName is required |
||
|
FriendName |
string |
Either the FriendId or the FriendName is required |
||
|
UserId |
int? |
Either the UserId or the Username is required |
||
|
Username |
string |
Either the UserId or the Username is required |