Skip to content

Latest commit

 

History

History
73 lines (51 loc) · 1.7 KB

Components.Schemas.SlackFinishInstallResponse.md

File metadata and controls

73 lines (51 loc) · 1.7 KB

STRUCT

Components.Schemas.SlackFinishInstallResponse

Contents

public struct SlackFinishInstallResponse: Codable, Hashable, Sendable
  • Remark: Generated from #/components/schemas/SlackFinishInstallResponse.

Properties

app_id

public var app_id: Swift.String

The app ID of the Slack app that was originally configured at the project-level.

  • Remark: Generated from #/components/schemas/SlackFinishInstallResponse/app_id.

code

public var code: Swift.String

The code that was returned from the OAuth flow, and found in the query string of the redirect URL.

  • Remark: Generated from #/components/schemas/SlackFinishInstallResponse/code.

redirect_url

public var redirect_url: Swift.String?
  • Remark: Generated from #/components/schemas/SlackFinishInstallResponse/redirect_url.

Methods

init(app_id:code:redirect_url:)

public init(
    app_id: Swift.String,
    code: Swift.String,
    redirect_url: Swift.String? = nil
)

Creates a new SlackFinishInstallResponse.

  • Parameters:
    • app_id: The app ID of the Slack app that was originally configured at the project-level.
    • code: The code that was returned from the OAuth flow, and found in the query string of the redirect URL.
    • redirect_url:

Parameters

Name Description
app_id The app ID of the Slack app that was originally configured at the project-level.
code The code that was returned from the OAuth flow, and found in the query string of the redirect URL.
redirect_url