Skip to content

Commit

Permalink
🎨 #3116【开放平台】云开发/云托管环境共享接口增加请求环境源参数
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Aug 24, 2023
1 parent 90e1a9e commit 7a96f0f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,19 @@ public class ShareCloudBaseEnvRequest implements Serializable {
@SerializedName("data")
private List<DataDTO> data;

/**
* 请求环境源,填 1,表示云托管环境
*/
@SerializedName("source_type")
private Integer sourceType;

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public static class DataDTO implements Serializable {
private static final long serialVersionUID = -8117487215582856716L;

@SerializedName("env")
private String env;
@SerializedName("appids")
Expand Down

0 comments on commit 7a96f0f

Please sign in to comment.