-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5997c2b
commit 4664b20
Showing
12 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...llie.Api/Models/Balance/Response/BalanceTransaction/Specific/CaptureBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class CaptureBalanceTransaction : BalanceTransaction { | ||
public CaptureTransactionContext Context { get; set; } | ||
public required CaptureTransactionContext Context { get; init; } | ||
} | ||
|
||
public class CaptureTransactionContext { | ||
public string PaymentId { get; set; } | ||
public string CaptureId { get; set; } | ||
public required string PaymentId { get; init; } | ||
public required string CaptureId { get; init; } | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...e.Api/Models/Balance/Response/BalanceTransaction/Specific/ChargebackBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class ChargebackBalanceTransaction : BalanceTransaction { | ||
public ChargebackTransactionContext Context { get; set; } | ||
public required ChargebackTransactionContext Context { get; init; } | ||
} | ||
|
||
public class ChargebackTransactionContext { | ||
public string PaymentId { get; set; } | ||
public string ChargebackId { get; set; } | ||
public required string PaymentId { get; init; } | ||
public required string ChargebackId { get; init; } | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...llie.Api/Models/Balance/Response/BalanceTransaction/Specific/InvoiceBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class InvoiceBalanceTransaction : BalanceTransaction { | ||
public InvoiceTransactionContext Context { get; set; } | ||
public required InvoiceTransactionContext Context { get; init; } | ||
} | ||
|
||
public class InvoiceTransactionContext { | ||
public string InvoiceId { get; set; } | ||
public required string InvoiceId { get; init; } | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...llie.Api/Models/Balance/Response/BalanceTransaction/Specific/PaymentBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class PaymentBalanceTransaction : BalanceTransaction { | ||
public PaymentTransactionContext Context { get; set; } | ||
public required PaymentTransactionContext Context { get; init; } | ||
} | ||
|
||
public class PaymentTransactionContext { | ||
public string PaymentId { get; set; } | ||
public required string PaymentId { get; init; } | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...ollie.Api/Models/Balance/Response/BalanceTransaction/Specific/RefundBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class RefundBalanceTransaction : BalanceTransaction { | ||
public RefundTransactionContext Context { get; set; } | ||
public required RefundTransactionContext Context { get; init; } | ||
} | ||
|
||
public class RefundTransactionContext { | ||
public string PaymentId { get; set; } | ||
public string RefundId { get; set; } | ||
public required string PaymentId { get; init; } | ||
public required string RefundId { get; init; } | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...e.Api/Models/Balance/Response/BalanceTransaction/Specific/SettlementBalanceTransaction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
namespace Mollie.Api.Models.Balance.Response.BalanceTransaction.Specific { | ||
public class SettlementBalanceTransaction : BalanceTransaction { | ||
public SettlementTransactionContext Context { get; set; } | ||
public required SettlementTransactionContext Context { get; init; } | ||
} | ||
|
||
public class SettlementTransactionContext { | ||
public string TransferId { get; set; } | ||
public string SettlementId { get; set; } | ||
public required string TransferId { get; init; } | ||
public required string SettlementId { get; init; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters