Constructor.
Namespace:
MaxMind.MinFraud.Request
Assembly:
MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntaxpublic Billing(
string firstName = null,
string lastName = null,
string company = null,
string address = null,
string address2 = null,
string city = null,
string region = null,
string country = null,
string postal = null,
string phoneNumber = null,
string phoneCountryCode = null
)
Public Sub New (
Optional firstName As String = Nothing,
Optional lastName As String = Nothing,
Optional company As String = Nothing,
Optional address As String = Nothing,
Optional address2 As String = Nothing,
Optional city As String = Nothing,
Optional region As String = Nothing,
Optional country As String = Nothing,
Optional postal As String = Nothing,
Optional phoneNumber As String = Nothing,
Optional phoneCountryCode As String = Nothing
)
public:
Billing(
String^ firstName = nullptr,
String^ lastName = nullptr,
String^ company = nullptr,
String^ address = nullptr,
String^ address2 = nullptr,
String^ city = nullptr,
String^ region = nullptr,
String^ country = nullptr,
String^ postal = nullptr,
String^ phoneNumber = nullptr,
String^ phoneCountryCode = nullptr
)
new :
?firstName : string *
?lastName : string *
?company : string *
?address : string *
?address2 : string *
?city : string *
?region : string *
?country : string *
?postal : string *
?phoneNumber : string *
?phoneCountryCode : string
(* Defaults:
let _firstName = defaultArg firstName null
let _lastName = defaultArg lastName null
let _company = defaultArg company null
let _address = defaultArg address null
let _address2 = defaultArg address2 null
let _city = defaultArg city null
let _region = defaultArg region null
let _country = defaultArg country null
let _postal = defaultArg postal null
let _phoneNumber = defaultArg phoneNumber null
let _phoneCountryCode = defaultArg phoneCountryCode null
*)
-> Billing
Parameters
- firstName (Optional)
- Type: SystemString
The first name of the end user as provided in their billing information. - lastName (Optional)
- Type: SystemString
The last name of the end user as provided in their billing information. - company (Optional)
- Type: SystemString
The company of the end user as provided in their billing information. - address (Optional)
- Type: SystemString
The first line of the user’s billing address. - address2 (Optional)
- Type: SystemString
The second line of the user’s billing address. - city (Optional)
- Type: SystemString
The city of the user’s billing address. - region (Optional)
- Type: SystemString
The ISO 3166-2
subdivision code for the user’s billing address. - country (Optional)
- Type: SystemString
The two character ISO
3166-1 alpha-2 country code of the user’s billing address. - postal (Optional)
- Type: SystemString
The postal code of the user’s billing address. - phoneNumber (Optional)
- Type: SystemString
The phone number without the country code for the user’s billing address. - phoneCountryCode (Optional)
- Type: SystemString
The country code for phone number associated with the user’s billing address.
See Also