Show / Hide Table of Contents

Class AuthorizeSubscriptionPaymentDetails

Request object for a subscription payment authorization

Inheritance
object
AuthorizeSubscriptionPaymentDetails
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
public class AuthorizeSubscriptionPaymentDetails

Properties

Email

Declaration
[Required(ErrorMessage = "Email is required.")]
[JsonProperty(PropertyName = "email")]
public string Email { get; set; }
Property Value
Type Description
string

User email

Remarks

Required

LanguageCode

Declaration
[Required(ErrorMessage = "LanguageCode is required.")]
[JsonProperty(PropertyName = "languageCode")]
public string LanguageCode { get; set; }
Property Value
Type Description
string

Language code

Remarks

Required

Subscription

Declaration
[Required(ErrorMessage = "Subscription is required.")]
[JsonProperty(PropertyName = "subscription")]
public Subscription Subscription { get; set; }
Property Value
Type Description
Subscription
Remarks

Required

In this article
Back to top