-
-
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.
Less then 500 nullability warnings to go
- Loading branch information
1 parent
bedaad2
commit fc497ce
Showing
18 changed files
with
75 additions
and
79 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
15 changes: 4 additions & 11 deletions
15
src/Mollie.Api/Models/PaymentLink/Response/PaymentLinkResponseLinks.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,27 +1,20 @@ | ||
using Mollie.Api.Models.Chargeback; | ||
using Mollie.Api.Models.Customer; | ||
using Mollie.Api.Models.List; | ||
using Mollie.Api.Models.Mandate; | ||
using Mollie.Api.Models.Settlement; | ||
using Mollie.Api.Models.Subscription; | ||
using Mollie.Api.Models.Url; | ||
using Mollie.Api.Models.Url; | ||
|
||
namespace Mollie.Api.Models.PaymentLink.Response { | ||
public class PaymentLinkResponseLinks { | ||
/// <summary> | ||
/// The API resource URL of the payment link itself. | ||
/// </summary> | ||
public UrlObjectLink<PaymentLinkResponse> Self { get; set; } | ||
public required UrlObjectLink<PaymentLinkResponse> Self { get; init; } | ||
|
||
/// <summary> | ||
/// Direct link to the payment link. | ||
/// </summary> | ||
public UrlLink PaymentLink { get; set; } | ||
public required UrlLink PaymentLink { get; init; } | ||
|
||
/// <summary> | ||
///The URL to the payment link retrieval endpoint documentation. | ||
/// </summary> | ||
public UrlLink Documentation { get; set; } | ||
|
||
public required UrlLink Documentation { 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
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
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
Oops, something went wrong.