Interface IPromptQueryImportResult


public interface IPromptQueryImportResult
Result of importing a prompt query.
Since:
8.5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the data of the imported prompt connection (if the connection was created/updated alongside the query).
    Gets the data of the imported prompt query.
    boolean
    Gets whether the UUID of the imported prompt connection has changed (due to a conflict when the connection was created alongside the query).
    boolean
    Gets whether the UUID of the imported prompt query has changed (due to a conflict).
  • Method Details

    • getConnectionData

      PromptConnectionData getConnectionData()
      Gets the data of the imported prompt connection (if the connection was created/updated alongside the query).
      Returns:
      The data of the imported prompt connection, or null if no connection was created/updated.
    • getQueryData

      PromptQueryData getQueryData()
      Gets the data of the imported prompt query.
      Returns:
      The data of the imported prompt query.
    • isConnectionUuidChanged

      boolean isConnectionUuidChanged()
      Gets whether the UUID of the imported prompt connection has changed (due to a conflict when the connection was created alongside the query).
      Returns:
      true if the UUID of the imported prompt connection has changed, false otherwise.
    • isQueryUuidChanged

      boolean isQueryUuidChanged()
      Gets whether the UUID of the imported prompt query has changed (due to a conflict).
      Returns:
      true if the UUID of the imported prompt query has changed, false otherwise.