Skip to content

Commit

Permalink
Crankshaft[BU0000055JQTQM] .NET client @ 2018-03-16 11:12:22 UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
Crankshaft Robot committed Mar 16, 2018
1 parent 5c86300 commit 0b101c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions GoCardless/Resources/Creditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,9 @@ public enum CreditorSchemeIdentifierCurrency {
[JsonConverter(typeof(StringEnumConverter))]
public enum CreditorSchemeIdentifierScheme {

/// <summary>`scheme` with a value of "autogiro"</summary>
[EnumMember(Value = "autogiro")]
Autogiro,
/// <summary>`scheme` with a value of "bacs"</summary>
[EnumMember(Value = "bacs")]
Bacs,
Expand All @@ -320,9 +323,6 @@ public enum CreditorSchemeIdentifierScheme {
/// <summary>`scheme` with a value of "sepa"</summary>
[EnumMember(Value = "sepa")]
Sepa,
/// <summary>`scheme` with a value of "autogiro"</summary>
[EnumMember(Value = "autogiro")]
Autogiro,
}

/// <summary>
Expand Down
7 changes: 5 additions & 2 deletions GoCardless/Resources/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class EventDetails
public string ReasonCode { get; set; }

/// <summary>
/// Set when a bank is the origin of the event.
/// A Direct Debit scheme. Set when a bank is the origin of the event.
/// </summary>
[JsonProperty("scheme")]
public EventDetailsScheme? Scheme { get; set; }
Expand Down Expand Up @@ -144,7 +144,7 @@ public enum EventDetailsOrigin {
}

/// <summary>
/// Set when a bank is the origin of the event.
/// A Direct Debit scheme. Set when a bank is the origin of the event.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum EventDetailsScheme {
Expand All @@ -155,6 +155,9 @@ public enum EventDetailsScheme {
/// <summary>`scheme` with a value of "bacs"</summary>
[EnumMember(Value = "bacs")]
Bacs,
/// <summary>`scheme` with a value of "betalingsservice"</summary>
[EnumMember(Value = "betalingsservice")]
Betalingsservice,
/// <summary>`scheme` with a value of "sepa_core"</summary>
[EnumMember(Value = "sepa_core")]
SepaCore,
Expand Down

0 comments on commit 0b101c3

Please sign in to comment.