promotionDetails;
}
+
@Data
@NoArgsConstructor
public static class Payer implements Serializable {
@@ -267,6 +267,34 @@ public static class Payer implements Serializable {
*/
@SerializedName(value = "openid")
private String openid;
+
+ /**
+ *
+ * 字段名:用户服务标识
+ * 变量名:sp_openid
+ * 是否必填:是
+ * 类型:string[1,128]
+ * 描述:
+ * 用户在服务商appid下的唯一标识。
+ * 示例值:oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
+ *
+ */
+ @SerializedName(value = "sp_openid")
+ private String spOpenid;
+
+ /**
+ *
+ * 字段名:用户子标识
+ * 变量名:sub_openid
+ * 是否必填:否
+ * 类型:string[1,128]
+ * 描述:
+ * 用户在子商户appid下的唯一标识。
+ * 示例值:oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
+ *
+ */
+ @SerializedName(value = "sub_openid")
+ private String subOpenid;
}
@Data