-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from gocardless/template-changes
Bump version to v4.3.0
- Loading branch information
Showing
13 changed files
with
387 additions
and
18 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
|
||
namespace GoCardless.Resources | ||
{ | ||
|
||
/// <summary> | ||
/// Represents a tax rate resource. | ||
/// | ||
/// Tax rates from tax authority. | ||
/// </summary> | ||
public class TaxRate | ||
{ | ||
/// <summary> | ||
/// Date at which GoCardless stopped applying the tax rate for the | ||
/// jurisdiction. | ||
/// </summary> | ||
[JsonProperty("end_date")] | ||
public string EndDate { get; set; } | ||
|
||
/// <summary> | ||
/// The unique identifier created by the jurisdiction, tax type and | ||
/// version | ||
/// </summary> | ||
[JsonProperty("id")] | ||
public string Id { get; set; } | ||
|
||
/// <summary> | ||
/// The jurisdiction this tax rate applies to | ||
/// </summary> | ||
[JsonProperty("jurisdiction")] | ||
public string Jurisdiction { get; set; } | ||
|
||
/// <summary> | ||
/// The percentage of tax that is applied onto of GoCardless fees | ||
/// </summary> | ||
[JsonProperty("percentage")] | ||
public string Percentage { get; set; } | ||
|
||
/// <summary> | ||
/// Date at which GoCardless started applying the tax rate in the | ||
/// jurisdiction. | ||
/// </summary> | ||
[JsonProperty("start_date")] | ||
public string StartDate { get; set; } | ||
|
||
/// <summary> | ||
/// The type of tax applied by this rate | ||
/// </summary> | ||
[JsonProperty("type")] | ||
public string Type { get; set; } | ||
} | ||
|
||
} |
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.