Skip to content

Commit

Permalink
Changes generated by c960c67bea7a943d0f59460f4784a452d98b53a1
Browse files Browse the repository at this point in the history
  • Loading branch information
gocardless-ci-robot[bot] committed Sep 23, 2024
1 parent 276c38a commit c414e4c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions GoCardless/Resources/BillingRequestTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ namespace GoCardless.Resources
/// <summary>
/// Represents a billing request template resource.
///
/// Billing Request Templates are reusable templates that result in
/// numerous Billing Requests with similar attributes. They provide
/// Billing Request Templates are reusable templates that result in
/// numerous Billing Requests with similar attributes. They provide
/// a no-code solution for generating various types of multi-user payment
/// links.
/// links.
///
/// Each template includes a reusable URL that can be embedded in a website
/// or shared with customers via email. Every time the URL is opened,
/// Each template includes a reusable URL that can be embedded in a website
/// or shared with customers via email. Every time the URL is opened,
/// it generates a new Billing Request.
///
/// Billing Request Templates overcome the key limitation of the Billing
/// Request:
/// Request:
/// a Billing Request cannot be shared among multiple users because it is
/// intended
/// for single-use and is designed to cater to the unique needs of
Expand Down Expand Up @@ -131,7 +131,7 @@ public class BillingRequestTemplate
public string Name { get; set; }

/// <summary>
/// Amount in minor unit (e.g. pence in GBP, cents in EUR).
/// Amount in full.
/// </summary>
[JsonProperty("payment_request_amount")]
public string PaymentRequestAmount { get; set; }
Expand Down
20 changes: 10 additions & 10 deletions GoCardless/Services/BillingRequestTemplateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ namespace GoCardless.Services
/// <summary>
/// Service class for working with billing request template resources.
///
/// Billing Request Templates are reusable templates that result in
/// numerous Billing Requests with similar attributes. They provide
/// Billing Request Templates are reusable templates that result in
/// numerous Billing Requests with similar attributes. They provide
/// a no-code solution for generating various types of multi-user payment
/// links.
/// links.
///
/// Each template includes a reusable URL that can be embedded in a website
/// or shared with customers via email. Every time the URL is opened,
/// Each template includes a reusable URL that can be embedded in a website
/// or shared with customers via email. Every time the URL is opened,
/// it generates a new Billing Request.
///
/// Billing Request Templates overcome the key limitation of the Billing
/// Request:
/// Request:
/// a Billing Request cannot be shared among multiple users because it is
/// intended
/// for single-use and is designed to cater to the unique needs of
Expand Down Expand Up @@ -348,10 +348,10 @@ public enum BillingRequestTemplateMandateRequestVerify
public string Name { get; set; }

/// <summary>
/// Amount in minor unit (e.g. pence in GBP, cents in EUR).
/// Amount in full.
/// </summary>
[JsonProperty("payment_request_amount")]
public int? PaymentRequestAmount { get; set; }
public string PaymentRequestAmount { get; set; }

/// <summary>
/// [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217#Active_codes)
Expand Down Expand Up @@ -542,10 +542,10 @@ public enum BillingRequestTemplateMandateRequestVerify
public string Name { get; set; }

/// <summary>
/// Amount in minor unit (e.g. pence in GBP, cents in EUR).
/// Amount in full.
/// </summary>
[JsonProperty("payment_request_amount")]
public int? PaymentRequestAmount { get; set; }
public string PaymentRequestAmount { get; set; }

/// <summary>
/// [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217#Active_codes)
Expand Down

0 comments on commit c414e4c

Please sign in to comment.