Skip to content

Commit

Permalink
🎨 #2491【小程序】获取小程序scheme码接口请求增加两个过期相关参数
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Jan 23, 2022
1 parent 04914f5 commit f3b2e93
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,25 @@ public class WxMaGenerateSchemeRequest {
@SerializedName("expire_time")
private Long expireTime;

/**
* 到期失效的 scheme 码失效类型,失效时间:0,失效间隔天数:1
* <pre>
* 是否必填:否
* </pre>
*/
@SerializedName("expire_type")
private Integer expireType;

/**
* 到期失效的 scheme 码的失效间隔天数。
* <pre>
* 生成的到期失效 scheme 码在该间隔时间到达前有效。最长间隔天数为365天。is_expire 为 true 且 expire_type 为 1 时必填 * <pre>
* 是否必填:否
* </pre>
*/
@SerializedName("expire_interval")
private Integer expireInterval;

@Data
@Builder(builderMethodName = "newBuilder")
public static class JumpWxa {
Expand Down

0 comments on commit f3b2e93

Please sign in to comment.