
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace HathoraCloud.Models.Shared
{
    using Newtonsoft.Json;
    using System;
    using UnityEngine;
    
    /// <summary>
    /// Enable google auth for your application.
    /// </summary>
    [Serializable]
    public class Google
    {

        /// <summary>
        /// A Google generated token representing the developer&apos;s credentials for <a href="https://console.cloud.google.com/apis/dashboard?pli=1&amp;project=discourse-login-388921">Google&apos;s API Console</a>. Learn how to get a `clientId` <a href="https://developers.google.com/identity/gsi/web/guides/get-google-api-clientid">here</a>.
        /// </summary>
        [SerializeField]
        [JsonProperty("clientId")]
        public string ClientId { get; set; } = default!;
    }
}