Class FindProductgroupsParams
Inheritance
FindProductgroupsParams
Assembly: Worldline.Connect.Sdk.dll
Syntax
public class FindProductgroupsParams : AbstractParamRequest
Properties
Amount
Amount of the transaction in cents and always having 2 decimals
Declaration
public long? Amount { get; set; }
Property Value
CountryCode
ISO 3166-1 alpha-2 country code of the transaction
Declaration
public string CountryCode { get; set; }
Property Value
CurrencyCode
Three-letter ISO currency code representing the currency for the amount
Declaration
public string CurrencyCode { get; set; }
Property Value
Hide
Allows you to hide elements from the response, reducing the amount of data that needs to be returned to your client. Possible options are:
- fields - Don't return any data on fields of the payment product
- accountsOnFile - Don't return any accounts on file data
- translations - Don't return any label texts associated with the payment products
Declaration
public IList<string> Hide { get; set; }
Property Value
IsInstallments
This allows you to filter payment products based on their support for installments or not
If this is omitted all payment products are returned.
Declaration
public bool? IsInstallments { get; set; }
Property Value
IsRecurring
This allows you to filter groups based on their support for recurring, where a group supports recurring if it has at least one payment product that supports recurring
Declaration
public bool? IsRecurring { get; set; }
Property Value
Locale
Locale used in the GUI towards the consumer. Please make sure that a language pack is configured for the locale you are submitting. If you submit a locale that is not set up on your account, we will use the default language pack for your account. You can easily upload additional language packs and set the default language pack in the Configuration Center.
Declaration
public string Locale { get; set; }
Property Value
Methods
AddHide(string)
Declaration
public void AddHide(string value)
Parameters
Type |
Name |
Description |
string |
value |
|
ToRequestParameters()
Declaration
public override IEnumerable<RequestParam> ToRequestParameters()
Returns
Overrides