All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.stream.FollowResponse Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.stream;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

@Data
public class FollowResponse {
    @JSONField(name = "ResponseMetadata")
    CommonPo.ResponseMetadata responseMetadata;
    @JSONField(name = "Result")
    Result result;

    @Data
    public static class Result {
        @JSONField(name = "Create")
        boolean create;
        @JSONField(name = "User")
        CommonPo.UserInfo user;
        @JSONField(name = "IsFollowing")
        boolean isFollowing;
        @JSONField(name = "IsFollowed")
        boolean isFollowed;
        @JSONField(name = "UserVerified")
        boolean userVerified;
        @JSONField(name = "Name")
        String name;
        @JSONField(name = "UserId")
        String userId;
        @JSONField(name = "ScreenName")
        String screenName;
        @JSONField(name = "AvatarUrl")
        String avatarUrl;
        @JSONField(name = "Type")
        int type;
        @JSONField(name = "Description")
        String description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy