From 13c66af6f96eb89ee22c05e47b124788d251e8ed Mon Sep 17 00:00:00 2001 From: Anthony Oliveri Date: Mon, 11 Feb 2019 16:22:59 -0600 Subject: [PATCH] fix(CompareComplyV1): BodyCells had incorrect types for some of its properties --- Source/CompareComplyV1/Models/BodyCells.swift | 33 +++++++++++++++---- 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/Source/CompareComplyV1/Models/BodyCells.swift b/Source/CompareComplyV1/Models/BodyCells.swift index 20037aec3..f77bbb47a 100644 --- a/Source/CompareComplyV1/Models/BodyCells.swift +++ b/Source/CompareComplyV1/Models/BodyCells.swift @@ -58,17 +58,38 @@ public struct BodyCells: Codable, Equatable { */ public var columnIndexEnd: Int? - public var rowHeaderIDs: [RowHeaderIDs]? + /** + An array of values, each being the `id` value of a row header that is applicable to this body cell. + */ + public var rowHeaderIDs: [String]? - public var rowHeaderTexts: [RowHeaderTexts]? + /** + An array of values, each being the `text` value of a row header that is applicable to this body cell. + */ + public var rowHeaderTexts: [String]? - public var rowHeaderTextsNormalized: [RowHeaderTextsNormalized]? + /** + If you provide customization input, the normalized version of the row header texts according to the customization; + otherwise, the same value as `row_header_texts`. + */ + public var rowHeaderTextsNormalized: [String]? - public var columnHeaderIDs: [ColumnHeaderIDs]? + /** + An array of values, each being the `id` value of a column header that is applicable to the current cell. + */ + public var columnHeaderIDs: [String]? + + /** + An array of values, each being the `text` value of a column header that is applicable to the current cell. + */ + public var columnHeaderTexts: [String]? - public var columnHeaderTexts: [ColumnHeaderTexts]? + /** + If you provide customization input, the normalized version of the column header texts according to the + customization; otherwise, the same value as `column_header_texts`. + */ + public var columnHeaderTextsNormalized: [String]? - public var columnHeaderTextsNormalized: [ColumnHeaderTextsNormalized]? public var attributes: [Attribute]? // Map each property name to the key that shall be used for encoding/decoding.