Skip to content

Commit

Permalink
fix(CompareComplyV1): BodyCells had incorrect types for some of its p…
Browse files Browse the repository at this point in the history
…roperties
  • Loading branch information
Anthony Oliveri committed Feb 12, 2019
1 parent 96eb790 commit 13c66af
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions Source/CompareComplyV1/Models/BodyCells.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 13c66af

Please sign in to comment.