Skip to content
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

feat: Init Codable with Swift decodable functionalities #1

Merged
merged 6 commits into from
Aug 11, 2019

Conversation

gorhom
Copy link
Owner

@gorhom gorhom commented Aug 11, 2019

Created a base class that handles parsing JSON payload in to pre-defined CodingProperties which equivalent to CodingKeys in Swift but with extra variables:

export interface ICodingProperty {
  type: IType | ICodable; // refers to the property type
  key?: string; // refers to the property key in the JSON 
}

supported types are:

  • Primitives
    • string
    • number
    • boolean
  • Complex
    • array
    • optional
    • Codable

@gorhom gorhom merged commit 3e71061 into master Aug 11, 2019
@gorhom gorhom deleted the feature/init-codable branch August 11, 2019 21:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant