class FollowsDeleteOptions
{
int? FollowerId { get; set; }
string FollowerName { get; set; }
int? FollowingId { get; set; }
string FollowingName { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
FollowerId |
int? |
Id of user who is following. Either FollowerId or FollowerName is required. |
||
|
FollowerName |
string |
Username of user who is following. Either FollowerId or FollowerName is required. |
||
|
FollowingId |
int? |
Id of user who is followed. Either FollowingId or FollowingName is required. |
||
|
FollowingName |
string |
Username of user who is followed. Either FollowingId or FollowingName is required. |