Skip to content

Commit

Permalink
Merge branch 'release/3.423.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
vc-ci committed Dec 5, 2023
2 parents 9a34333 + a273aa9 commit be9ec38
Show file tree
Hide file tree
Showing 21 changed files with 7,250 additions and 473 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<!-- These properties will be shared for all projects -->
<PropertyGroup>
<VersionPrefix>3.422.0</VersionPrefix>
<VersionPrefix>3.423.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
</PropertyGroup>
Expand Down
2 changes: 2 additions & 0 deletions src/VirtoCommerce.OrdersModule.Core/Model/Capture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ public class Capture : OrderOperation
public string PaymentId { get; set; }

public virtual ICollection<CaptureItem> Items { get; set; }

public bool CloseTransaction { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ namespace VirtoCommerce.OrdersModule.Core.Model
{
public class CaptureOrderPaymentRequest : OrderPaymentRequest
{
// Provides information about the charge that customers see on their statements. If Seller provides this information, a payment provider can implement it.
/// <summary>
/// Provides information about the charge that customers see on their statements. If Seller provides this information, a payment provider can implement it.
/// </summary>
public string CaptureDetails { get; set; }

/// <summary>
/// Set to True to close a transaction, restricting future capture operations against this order; otherwise, set to False. By default, False.
/// </summary>
public bool CloseTransaction { get; set; }
}
}
Loading

0 comments on commit be9ec38

Please sign in to comment.