Show / Hide Table of Contents

Class OtherPaymentDetail

Other Payment related details

Inheritance
object
PaymentDetail
OtherPaymentDetail
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 OtherPaymentDetail : PaymentDetail

Properties

CreditCardType

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

Echeck card type

EcheckRouting

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

Last four routing digits of the card

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 echeck card

TimeExpiration

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

Expired date of the echeck card

In this article
Back to top