IntelligenceX

API Reference

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 requiredposition: 0
authUrl System.String requiredposition: 1
raw IntelligenceX.Json.JsonObject requiredposition: 2
additional IntelligenceX.Json.JsonObject requiredposition: 3

Methods

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

Parses the login start payload from JSON.

Parameters

obj IntelligenceX.Json.JsonObject requiredposition: 0
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.