SubscriptionHelperGetSubscriptionsByCustomAttribute Method |
Gets subscriptions by custom attribute (key + value).
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static List<Subscription> GetSubscriptionsByCustomAttribute(
Guid customerId,
string key,
string value
)
Public Shared Function GetSubscriptionsByCustomAttribute (
customerId As Guid,
key As String,
value As String
) As List(Of Subscription)
public:
static List<Subscription^>^ GetSubscriptionsByCustomAttribute(
Guid customerId,
String^ key,
String^ value
)
static member GetSubscriptionsByCustomAttribute :
customerId : Guid *
key : string *
value : string -> List<Subscription>
Parameters
- customerId
- Type: SystemGuid
The customer id. - key
- Type: SystemString
The attribute key. - value
- Type: SystemString
The value.
Return Value
Type:
ListSubscriptionList of subscriptions for given account which equals key/value of custom attributes.
See Also