IntelligenceX
Class

ChatGptLoginStart

Namespace IntelligenceX.OpenAI.AppServer.Models
Assembly IntelligenceX
Modifiers sealed

Represents the initial response from a ChatGPT login start call.

Inheritance

  • Object
  • ChatGptLoginStart

Constructors

public ChatGptLoginStart(String loginId, String authUrl, JsonObject raw, JsonObject additional) #

Initializes a new login start model.

Parameters

loginId System.String
authUrl System.String
raw IntelligenceX.Json.JsonObject
additional IntelligenceX.Json.JsonObject

Methods

public static ChatGptLoginStart FromJson(JsonObject obj) #
Returns: ChatGptLoginStart

Parses the login start payload from JSON.

Parameters

obj IntelligenceX.Json.JsonObject
Source JSON object.

Returns

The parsed login start model.

Properties

public String LoginId { get; } #

Gets the login id.

public String AuthUrl { get; } #

Gets the authorization URL.

public JsonObject Raw { get; } #

Gets the raw JSON object.

public JsonObject Additional { get; } #

Gets unrecognized fields from the payload.