Skip to content

Commit

Permalink
fix(swift): appID casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluf22 committed Feb 15, 2024
1 parent d660ce7 commit 3ac4248
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ import Foundation

public protocol Credentials {
/// ApplicationID to target. Is passed as a HTTP header.
var appId: String { get }
var appID: String { get }

/**
* APIKey for a given ApplicationID. Is passed as a HTTP header.
* To maintain security, never use your Admin APIKey on your front end or share it with anyone.
* In your front end, use the Search-only APIKey or any other key that has search-only rights.
*/
/// APIKey for a given ApplicationID. Is passed as a HTTP header.
/// To maintain security, never use your Admin APIKey on your front end or share it with anyone.
/// In your front end, use the Search-only APIKey or any other key that has search-only rights.
var apiKey: String { get }
}

0 comments on commit 3ac4248

Please # to comment.