Show / Hide Table of Contents

Class CreditCardPaymentOption

Credit card Payment related details

Inheritance
object
PaymentOption
CreditCardPaymentOption
Inherited Members
PaymentOption.WalletInstrumentId
PaymentOption.WalletTransactionId
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OspgatewayService.Models
Assembly: OCI.DotNetSDK.Ospgateway.dll
Syntax
public class CreditCardPaymentOption : PaymentOption

Properties

CreditCardType

Declaration
[JsonProperty(PropertyName = "creditCardType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CreditCardType? CreditCardType { get; set; }
Property Value
Type Description
CreditCardType?

Credit card type.

LastDigits

Declaration
[JsonProperty(PropertyName = "lastDigits")]
public string LastDigits { get; set; }
Property Value
Type Description
string

Last four digits of the card.

NameOnCard

Declaration
[JsonProperty(PropertyName = "nameOnCard")]
public string NameOnCard { get; set; }
Property Value
Type Description
string

Name on the credit card.

TimeExpiration

Declaration
[JsonProperty(PropertyName = "timeExpiration")]
public DateTime? TimeExpiration { get; set; }
Property Value
Type Description
DateTime?

Expired date of the credit card.

In this article
Back to top