Search Results for

    Show / Hide Table of Contents

    Class UserReviewRequest

    Holds additional information for user review.

    Inheritance
    object
    UserReviewRequest
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class UserReviewRequest

    Properties

    Reviewed

    Indicates the requested review state of the user.
    If true is specified, user will be transitioned into reviewed state. False will put the user back into to be reviewed state.

    Declaration
    [JsonProperty("reviewed", Required = Required.Always)]
    public bool Reviewed { get; set; }
    Property Value
    bool

    SuppressEmail

    If true, no email will be sent to inform the user that they were reviewed.

    Declaration
    [JsonProperty("suppressEmail", Required = Required.Always)]
    public bool SuppressEmail { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static UserReviewRequest FromJson(string data)
    Parameters
    string data

    Returns
    UserReviewRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX