Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【视频号】获取店铺基本信息接口返回数据 新增 店铺状态(status) 和 店铺原始ID(username) 字段 #3275

Merged
merged 1 commit into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,12 @@ public class ShopInfo implements Serializable {
/** 店铺类型,目前为"企业"或"个体工商户" */
@JsonProperty("subject_type")
private String subjectType;

/** 店铺状态,目前为 opening 或 open_finished 或 closing 或 close_finished */
@JsonProperty("status")
private String status;

/** 店铺原始ID */
@JsonProperty("username")
private String username;
}