-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BVN networking models #80
Conversation
public let signature: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case success = "success" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
|
||
enum CodingKeys: String, CodingKey { | ||
case success = "success" | ||
case message = "message" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
enum CodingKeys: String, CodingKey { | ||
case success = "success" | ||
case message = "message" | ||
case timestamp = "timestamp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
case success = "success" | ||
case message = "message" | ||
case timestamp = "timestamp" | ||
case signature = "signature" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
public let signature: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case success = "success" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
|
||
enum CodingKeys: String, CodingKey { | ||
case success = "success" | ||
case message = "message" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
enum CodingKeys: String, CodingKey { | ||
case success = "success" | ||
case message = "message" | ||
case timestamp = "timestamp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
case success = "success" | ||
case message = "message" | ||
case timestamp = "timestamp" | ||
case signature = "signature" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⚠️ String enum values can be omitted when they are equal to the enumcase name. (redundant_string_enum_value
)
Generated by 🚫 Danger Swift against d6db2d2 |
Example/SmileID.xcodeproj/xcshareddata/xcschemes/SmileID-Example.xcscheme
Show resolved
Hide resolved
* Remove dead code * Bump build number * Add BVN networking models * Update CHANGELOG * leave the beta10 notes alone * Bump build number
Story: https://app.shortcut.com/smileid/story/9097/add-bvn-enforced-consent-screens-to-the-v10-sdk-ios
Summary
Starts the work for adding BVN Consent. This adds the API calls and models