Show / Hide Table of Contents

Class RedeemableUser

The summary of a user that can redeem rewards.

Inheritance
object
RedeemableUser
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.UsageService.Models
Assembly: OCI.DotNetSDK.Usage.dll
Syntax
public class RedeemableUser

Properties

EmailId

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

The email ID for a user that can redeem rewards.

Remarks

Required

FirstName

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

The first name of the user that can redeem rewards.

LastName

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

The last name of the user that can redeem rewards.

In this article
Back to top