Skip to content

Commit

Permalink
feat(tenpayv3): 随官方更新统一下单相关接口模型
Browse files Browse the repository at this point in the history
  • Loading branch information
fudiwei committed Jun 19, 2024
1 parent 0827d9f commit d70b408
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public class Settlement : CreatePayTransactionAppRequest.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class Settlement : CreatePayTransactionAppRequest.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class Settlement : CreatePayPartnerTransactionAppRequest.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置设备信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public class Settlement : CreatePayTransactionCodePayRequest.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public class Settlement : CreatePayTransactionH5Request.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public class Settlement : CreatePayTransactionNativeRequest.Types.Settlement
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public class Settlement : CreatePayPartnerTransactionJsapiRequest.Types.Settleme
/// </summary>
[Newtonsoft.Json.JsonProperty("scene_info")]
[System.Text.Json.Serialization.JsonPropertyName("scene_info")]
public Types.Scene Scene { get; set; } = new Types.Scene();
public Types.Scene? Scene { get; set; }

/// <summary>
/// 获取或设置结算信息。
Expand Down

0 comments on commit d70b408

Please sign in to comment.