Show / Hide Table of Contents

Class CreditCardPaymentDetail

Credit card Payment related details

Inheritance
object
PaymentDetail
CreditCardPaymentDetail
Inherited Members
PaymentDetail.TimePaidOn
PaymentDetail.PaidBy
PaymentDetail.AmountPaid
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 CreditCardPaymentDetail : PaymentDetail

Properties

CreditCardType

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

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