Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

UserInfo.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Zettle.Domain.Api.OAuth;

/// 
/// Represents user details
/// 
public class UserInfo : ApiResponse
{
    /// 
    /// Gets or sets the unique identifier as UUID version 1
    /// 
    [JsonProperty(PropertyName = "uuid")]
    public string Uuid { get; set; }

    /// 
    /// Gets or sets the organization unique identifier as UUID version 1
    /// 
    [JsonProperty(PropertyName = "organizationUuid")]
    public string OrganizationUuid { get; set; }
}