Show / Hide Table of Contents

Class EcheckPaymentDetail

Echeck Payment related details

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

Properties

AccountNumber

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

Account number of the card owner

CardType

Declaration
[JsonProperty(PropertyName = "cardType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EcheckPaymentDetail.CardTypeEnum? CardType { get; set; }
Property Value
Type Description
EcheckPaymentDetail.CardTypeEnum?

Echeck card type

NameOnCard

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

Name on the echeck card

RoutingNumber

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

Routing number of the echeck card

In this article
Back to top