{
  "api": {
    "name": "SipPhoneControlPlugin",
    "slug": "sipphonecontrolplugin",
    "docs": "",
    "tags": [],
    "methods": [
      {
        "name": "initialize",
        "signature": "() => Promise<void>",
        "parameters": [],
        "returns": "Promise<void>",
        "tags": [],
        "docs": "Initialize plugin state",
        "complexTypes": [],
        "slug": "initialize"
      },
      {
        "name": "login",
        "signature": "(options: SipLoginOptions) => Promise<void>",
        "parameters": [
          {
            "name": "options",
            "docs": "",
            "type": "SipLoginOptions"
          }
        ],
        "returns": "Promise<void>",
        "tags": [
          {
            "name": "param",
            "text": "options"
          }
        ],
        "docs": "Make login to the SIP",
        "complexTypes": [
          "SipLoginOptions"
        ],
        "slug": "login"
      },
      {
        "name": "logout",
        "signature": "() => Promise<void>",
        "parameters": [],
        "returns": "Promise<void>",
        "tags": [],
        "docs": "Logout & terminate account",
        "complexTypes": [],
        "slug": "logout"
      },
      {
        "name": "call",
        "signature": "(options: SipOutgoingCallOptions) => Promise<void>",
        "parameters": [
          {
            "name": "options",
            "docs": "",
            "type": "SipOutgoingCallOptions"
          }
        ],
        "returns": "Promise<void>",
        "tags": [
          {
            "name": "param",
            "text": "options"
          }
        ],
        "docs": "Make outgoing call",
        "complexTypes": [
          "SipOutgoingCallOptions"
        ],
        "slug": "call"
      },
      {
        "name": "acceptCall",
        "signature": "() => Promise<void>",
        "parameters": [],
        "returns": "Promise<void>",
        "tags": [],
        "docs": "Accept incoming call",
        "complexTypes": [],
        "slug": "acceptcall"
      },
      {
        "name": "hangUp",
        "signature": "() => Promise<void>",
        "parameters": [],
        "returns": "Promise<void>",
        "tags": [],
        "docs": "Terminate current call",
        "complexTypes": [],
        "slug": "hangup"
      }
    ],
    "properties": []
  },
  "interfaces": [
    {
      "name": "SipLoginOptions",
      "slug": "siploginoptions",
      "docs": "",
      "tags": [],
      "methods": [],
      "properties": [
        {
          "name": "transport",
          "tags": [],
          "docs": "By default \"UDP\"",
          "complexTypes": [],
          "type": "'TLS' | 'TCP' | 'UDP' | undefined"
        },
        {
          "name": "domain",
          "tags": [],
          "docs": "SIP domain address",
          "complexTypes": [],
          "type": "string"
        },
        {
          "name": "username",
          "tags": [],
          "docs": "User login for authentication",
          "complexTypes": [],
          "type": "string"
        },
        {
          "name": "password",
          "tags": [],
          "docs": "User password for authentication",
          "complexTypes": [],
          "type": "string"
        }
      ]
    },
    {
      "name": "SipOutgoingCallOptions",
      "slug": "sipoutgoingcalloptions",
      "docs": "",
      "tags": [],
      "methods": [],
      "properties": [
        {
          "name": "address",
          "tags": [],
          "docs": "",
          "complexTypes": [],
          "type": "string"
        }
      ]
    }
  ],
  "enums": [],
  "typeAliases": [],
  "pluginConfigs": []
}