/**
* Configure checkboxes fields
*
* Each key of the checkbox object must be real list-field name and it must contain an inner object with the following keys:
*
* The checkbox object assumes you saved some data in a format similar to this example: "value1,value2,value3" (notice the "," delimiter)
*
* delimiter - string - the delimiter you used in your contact's list field
* options - object - with the following format: {value1: 'Title 1', value2: 'Title 2'}
*
* If contact's "checkbox" list-field value is not empty - The checkboxes that contains the contacts values will be checked
* In contact's "checkbox" list-field is empty - Non of the checkboxes will be checked
*
*
* **********************************
* * Example of the expected format *
* **********************************
* (This example will output one form group with two checkboxes)
*
* checkboxes = {
* // Field name
* list_field_name: {
* // String delimiter
* delimiter: ',',
* // Checkbox options {value => label}
* options: {
* option_value_1: 'Option title 1',
* option_value_2: 'Option title 2'
* }
* }
* }
*
*
*
* @type {object}
*
*/
checkboxes = {},
/**
* Configuring radio buttons
*
* Each key of the radio buttons object must be real list-field name
* The inner object must have the following format:
*
* {value: 'title'}
*
* In case user's list-field value is empty - non of the radio button will be marked
*
* **********************************
* * Example of the expected format *
* **********************************
* (This example will output 1 form group with 2 radio-buttons)
*
* radio_buttons = {
* // Field name
* list_field_name: {
* // Radio buttons options
* option_value_1: 'Option title 1',
* option_value_2: 'Option title 2',
* }
*}
*
* @type {object}
*/
radio_buttons = {};