Show / Hide Table of Contents

Class PaymentDetail

Payment related details

Inheritance
object
PaymentDetail
CreditCardPaymentDetail
EcheckPaymentDetail
OtherPaymentDetail
PaypalPaymentDetail
Inherited Members
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
[JsonConverter(typeof(PaymentDetailModelConverter))]
public class PaymentDetail

Properties

AmountPaid

Declaration
[JsonProperty(PropertyName = "amountPaid")]
public decimal? AmountPaid { get; set; }
Property Value
Type Description
decimal?

Amount that paid

PaidBy

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

example

TimePaidOn

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

Paid the invoice on this day

In this article
Back to top