Skip to content

Commit

Permalink
feat(CompareComplyV1): Add attributes property to BodyCells
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Oliveri committed Feb 12, 2019
1 parent b34a782 commit 3302504
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/CompareComplyV1/Models/BodyCells.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public struct BodyCells: Codable, Equatable {
public var columnHeaderTexts: [ColumnHeaderTexts]?

public var columnHeaderTextsNormalized: [ColumnHeaderTextsNormalized]?
public var attributes: [Attribute]?

// Map each property name to the key that shall be used for encoding/decoding.
private enum CodingKeys: String, CodingKey {
Expand All @@ -85,6 +86,7 @@ public struct BodyCells: Codable, Equatable {
case columnHeaderIDs = "column_header_ids"
case columnHeaderTexts = "column_header_texts"
case columnHeaderTextsNormalized = "column_header_texts_normalized"
case attributes = "attributes"
}

}

0 comments on commit 3302504

Please sign in to comment.