Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Android™ Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Google Vision
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun

Mastercard
MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Android™) Activix CRM Search for Leads

Demonstrates how to full-text search for leads, returning a JSON list of leads.

For more information, see https://docs.crm.activix.ca/api/resources/lead

Chilkat Android™ Downloads

Android™ Java Libraries

Android C/C++ Libraries

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    http.put_AuthToken("ACCESS_TOKEN");

    http.put_Accept("application/json");

    String strResp = http.quickGetStr("https://crm.activix.ca/api/v2/leads/search?query=Doe");
    if (http.get_LastMethodSuccess() != true) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, "Response Status Code: " + String.valueOf(http.get_LastStatus()));

    CkJsonObject jsonResponse = new CkJsonObject();
    jsonResponse.Load(strResp);
    jsonResponse.put_EmitCompact(false);
    Log.i(TAG, jsonResponse.emit());

    if (http.get_LastStatus() != 200) {
        Log.i(TAG, "Failed.");
        return;
        }

    // Sample output...
    // (See the parsing code below..)
    // 
    // Use this online tool to generate parsing code from sample JSON: 
    // Generate Parsing Code from JSON

    // {
    //     "data": [
    //         {
    //             "id": 3387562,
    //             "created_at": "2018-04-09T18:05:00+00:00",
    //             "updated_at": "2018-04-09T18:07:00+00:00",
    //             "first_name": "John",
    //             "last_name": "Doe",
    //             ...
    //             "account": {
    //                 "id": 66,
    //                 ...
    //             },
    //             "advisor": {
    //                 "id": 51112,
    //                 ...
    //             },
    //             "emails": [
    //                 {
    //                     "id": 3664451,
    //                     ...
    //                 },
    //                 ...
    //             ],
    //             "phones": [
    //                 {
    //                     "id": 9465546,
    //                     ...
    //                 },
    //                 ...
    //             ],
    //             "vehicles": [
    //                 {
    //                     "id": 4542214,
    //                     ...
    //                 },
    //                 ...
    //             ]
    //         },
    //         ...
    //     ],
    //     "links": {
    //         "first": "https://crm.activix.ca/api/v2/leads/search?query=John&page=1",
    //         "last": "https://crm.activix.ca/api/v2/leads/search?query=John&page=47",
    //         "prev": null,
    //         "next": "https://crm.activix.ca/api/v2/leads/search?query=John&page=2"
    //     },
    //     "meta": {
    //         "current_page": 1,
    //         "from": 1,
    //         "last_page": 47,
    //         "path": "https://crm.activix.ca/api/v2/leads/search",
    //         "per_page": 25,
    //         "to": 25,
    //         "total": 1161
    //     }
    // }

    String linksFirst;
    String linksLast;
    String linksPrev;
    String linksNext;
    int metaCurrent_page;
    int metaFrom;
    int metaLast_page;
    String metaPath;
    int metaPer_page;
    int metaTo;
    int metaTotal;
    int i;
    int count_i;
    int id;
    String created_at;
    String updated_at;
    int account_id;
    String address_line1;
    String address_line2;
    String appointment_date;
    boolean appt_call;
    String available_date;
    String average_spending;
    String be_back_date;
    String birth_date;
    String business;
    String call_date;
    String city;
    String civility;
    String code;
    String country;
    String csi_date;
    String delivered_by_id;
    String delivered_date;
    String delivery_date;
    String division;
    String end_service_date;
    String first_name;
    String gas;
    int gender;
    boolean invoiced;
    String last_name;
    String last_visit_date;
    String locale;
    String loyalty;
    String next_visit_date;
    String odometer_last_visit;
    String open_work_order_date;
    String planned_pick_up_date;
    String postal_code;
    String prepaid;
    boolean prepared;
    String presented_date;
    String promised_date;
    String province;
    String rating;
    boolean reached_client;
    String refinanced_date;
    String repair_date;
    String repair_order;
    String result;
    String road_test_date;
    String sale_date;
    String second_contact;
    String second_contact_civility;
    String segment;
    boolean service_cleaned;
    String service_interval_km;
    String service_monthly_km;
    String service_processIntention;
    String service_processTransport;
    String service_processWalk_around;
    String sex;
    String source;
    String status;
    String storage;
    String take_over_date;
    String v_type;
    String unsubscribe_all_date;
    String unsubscribe_call_date;
    String unsubscribe_email_date;
    String unsubscribe_sms_date;
    String work_order;
    int accountId;
    String accountCreated_at;
    String accountUpdated_at;
    int accountPartner_id;
    boolean accountActivity_report;
    boolean accountCommercial;
    boolean accountEvent;
    boolean accountLeadxpress;
    boolean accountLoyalty;
    boolean accountPhone_up;
    boolean accountRenewal;
    boolean accountSale_table;
    boolean accountService;
    boolean accountWalk_in;
    boolean accountWebboost;
    boolean accountAccount_manager;
    String accountActivation_date;
    boolean accountActive;
    boolean accountAssigned_lead;
    boolean accountAuto_renewal;
    boolean accountAuto_renewal_new;
    boolean accountAuto_renewal_used;
    boolean accountAutomation;
    boolean accountBdc_advisor;
    boolean accountCalendar_options;
    boolean accountClient_card_fieldsProcessGas;
    boolean accountClient_card_fieldsProcessRecorded;
    boolean accountClient_card_fieldsProcessAvailable;
    boolean accountClient_card_fieldsProcessDiscounted;
    boolean accountClient_card_fieldsCommercialProfit;
    boolean accountClient_card_fieldsCommercialExclude;
    boolean accountClient_card_fieldsCommercialMeeting;
    boolean accountClient_card_fieldsPerformanceDeposit;
    boolean accountClient_card_fieldsPerformanceRefinanced;
    boolean accountClient_card_fieldsPerformanceDealer_tour;
    boolean accountClient_card_fieldsPerformanceWalk_around;
    boolean accountClient_card_fieldsPerformanceQualification;
    boolean accountClient_card_fieldsPerformanceTwenty_four_hour;
    boolean accountClient_card_fieldsGeneral_infoBudget;
    boolean accountClient_card_fieldsGeneral_infoSector;
    boolean accountClient_card_fieldsGeneral_infoCustom_1;
    boolean accountClient_card_fieldsGeneral_infoCustom_2;
    boolean accountClient_card_fieldsGeneral_infoCustom_3;
    boolean accountClient_card_fieldsGeneral_infoCustom_4;
    boolean accountClient_card_fieldsGeneral_infoCustom_5;
    boolean accountClient_card_fieldsGeneral_infoCustom_6;
    boolean accountClient_card_fieldsGeneral_infoCustom_7;
    boolean accountClient_card_fieldsGeneral_infoCustom_8;
    boolean accountClient_card_fieldsGeneral_infoCustom_9;
    boolean accountClient_card_fieldsGeneral_infoCustom_10;
    boolean accountClient_card_fieldsGeneral_infoCommunication_preference;
    boolean accountClient_card_fieldsWanted_vehicleVin;
    boolean accountClient_card_fieldsWanted_vehicleFuel;
    boolean accountClient_card_fieldsWanted_vehicleRate;
    boolean accountClient_card_fieldsWanted_vehicleTerm;
    boolean accountClient_card_fieldsWanted_vehicleTire;
    boolean accountClient_card_fieldsWanted_vehicleYear;
    boolean accountClient_card_fieldsWanted_vehicleColor;
    boolean accountClient_card_fieldsWanted_vehiclePrice;
    boolean accountClient_card_fieldsWanted_vehicleStock;
    boolean accountClient_card_fieldsWanted_vehicleTotal;
    boolean accountClient_card_fieldsWanted_vehicleBudget;
    boolean accountClient_card_fieldsWanted_vehicleEngine;
    boolean accountClient_card_fieldsWanted_vehicleLength;
    boolean accountClient_card_fieldsWanted_vehicleProfit;
    boolean accountClient_card_fieldsWanted_vehicleSuffix;
    boolean accountClient_card_fieldsWanted_vehicleWeight;
    boolean accountClient_card_fieldsWanted_vehicleComment;
    boolean accountClient_card_fieldsWanted_vehicleMileage;
    boolean accountClient_card_fieldsWanted_vehiclePayment;
    boolean accountClient_card_fieldsWanted_vehicleBodyType;
    boolean accountClient_card_fieldsWanted_vehicleCategory;
    boolean accountClient_card_fieldsWanted_vehicleModality;
    boolean accountClient_card_fieldsWanted_vehicleResidual;
    boolean accountClient_card_fieldsWanted_vehicleSleeping;
    boolean accountClient_card_fieldsWanted_vehicleWarranty;
    boolean accountClient_card_fieldsWanted_vehicleFrequency;
    boolean accountClient_card_fieldsWanted_vehicleAccessories;
    boolean accountClient_card_fieldsWanted_vehicleCategory_rv;
    boolean accountClient_card_fieldsWanted_vehiclePreparation;
    boolean accountClient_card_fieldsWanted_vehicleInitial_cash;
    boolean accountClient_card_fieldsWanted_vehicleOffer_number;
    boolean accountClient_card_fieldsWanted_vehicleOrder_number;
    boolean accountClient_card_fieldsWanted_vehicleTransmission;
    boolean accountClient_card_fieldsWanted_vehicleDocumentation;
    boolean accountClient_card_fieldsWanted_vehicleDrivingWheels;
    boolean accountClient_card_fieldsWanted_vehicleColor_exterior;
    boolean accountClient_card_fieldsWanted_vehicleColor_interior;
    boolean accountClient_card_fieldsWanted_vehicleAllowed_mileage;
    boolean accountClient_card_fieldsWanted_vehicleSecurity_deposit;
    boolean accountClient_card_fieldsWanted_vehicleEnd_contract_date;
    boolean accountClient_card_fieldsExchange_vehicleVin;
    boolean accountClient_card_fieldsExchange_vehicleFuel;
    boolean accountClient_card_fieldsExchange_vehicleLink;
    boolean accountClient_card_fieldsExchange_vehicleRate;
    boolean accountClient_card_fieldsExchange_vehicleTerm;
    boolean accountClient_card_fieldsExchange_vehicleYear;
    boolean accountClient_card_fieldsExchange_vehicleColor;
    boolean accountClient_card_fieldsExchange_vehiclePrice;
    boolean accountClient_card_fieldsExchange_vehicleStock;
    boolean accountClient_card_fieldsExchange_vehicleValue;
    boolean accountClient_card_fieldsExchange_vehicleBudget;
    boolean accountClient_card_fieldsExchange_vehicleEngine;
    boolean accountClient_card_fieldsExchange_vehicleLength;
    boolean accountClient_card_fieldsExchange_vehicleProfit;
    boolean accountClient_card_fieldsExchange_vehicleSuffix;
    boolean accountClient_card_fieldsExchange_vehicleWeight;
    boolean accountClient_card_fieldsExchange_vehicleBalance;
    boolean accountClient_card_fieldsExchange_vehicleComment;
    boolean accountClient_card_fieldsExchange_vehicleMileage;
    boolean accountClient_card_fieldsExchange_vehiclePayment;
    boolean accountClient_card_fieldsExchange_vehicleRenewal;
    boolean accountClient_card_fieldsExchange_vehicleSold_by;
    boolean accountClient_card_fieldsExchange_vehicleBodyType;
    boolean accountClient_card_fieldsExchange_vehicleCategory;
    boolean accountClient_card_fieldsExchange_vehicleModality;
    boolean accountClient_card_fieldsExchange_vehicleResidual;
    boolean accountClient_card_fieldsExchange_vehicleSleeping;
    boolean accountClient_card_fieldsExchange_vehicleWarranty;
    boolean accountClient_card_fieldsExchange_vehicleCondition;
    boolean accountClient_card_fieldsExchange_vehicleFrequency;
    boolean accountClient_card_fieldsExchange_vehicleIntention;
    boolean accountClient_card_fieldsExchange_vehicleRefinance;
    boolean accountClient_card_fieldsExchange_vehicleRequested;
    boolean accountClient_card_fieldsExchange_vehicleSold_date;
    boolean accountClient_card_fieldsExchange_vehicleCategory_rv;
    boolean accountClient_card_fieldsExchange_vehicleInstitution;
    boolean accountClient_card_fieldsExchange_vehicleInitial_cash;
    boolean accountClient_card_fieldsExchange_vehicleOffer_number;
    boolean accountClient_card_fieldsExchange_vehicleTransmission;
    boolean accountClient_card_fieldsExchange_vehicleDrivingWheels;
    boolean accountClient_card_fieldsExchange_vehicleColor_exterior;
    boolean accountClient_card_fieldsExchange_vehicleColor_interior;
    boolean accountClient_card_fieldsExchange_vehicleAllowed_mileage;
    boolean accountClient_card_fieldsExchange_vehicleSecurity_deposit;
    boolean accountClient_card_fieldsExchange_vehicleEnd_contract_date;
    boolean accountClient_number;
    boolean accountConfirmation_appt;
    boolean accountCredit;
    boolean accountCsi;
    boolean accountCsi_used;
    String accountDefault_deliveryman_user_id;
    boolean accountDelivered_by;
    boolean accountDisable_communication_audio;
    boolean accountDuplicates;
    boolean accountGuest_action;
    boolean accountEmail_client;
    boolean accountIn_turn;
    boolean accountIn_turn_director_management;
    boolean accountLeads_other_division;
    int accountLeadxpress_optionPriority;
    int accountLeadxpress_optionReminderFrequency;
    int accountLeadxpress_optionReminderRecurrence;
    boolean accountLeadxpress_optionScheduleAccount;
    boolean accountLeadxpress_optionScheduleAdvisor;
    boolean accountLimited_audio_access;
    String accountLogo;
    String accountLogo_en;
    boolean accountMandatory_coordinate;
    boolean accountManually_status;
    String accountMerge_rule;
    int accountMonth_start_day;
    String accountName;
    boolean accountNiotext;
    boolean accountNiotext_phone;
    String accountPhone;
    boolean accountPower_sport;
    boolean accountProcess;
    boolean accountRecreative_special;
    boolean accountResult_date_validation;
    boolean accountSale_accessories;
    boolean accountSale_by_phone;
    boolean accountSale_date_month;
    boolean accountSale_table_optionsAccessory_column;
    boolean accountSale_table_optionsCommercial_column;
    boolean accountSale_table_optionsDivision_grouped_total_column;
    boolean accountSale_validation;
    boolean accountScan;
    boolean accountStock_required_for_sale;
    boolean accountTake_over_director;
    boolean accountTrade_report;
    boolean accountUnrestricted_assignment;
    boolean accountUnsubscribe;
    boolean accountUntreated_lead;
    boolean accountVehicle_model_text;
    boolean accountVehicle_text;
    boolean accountVerified_sale;
    boolean accountVin_decoder;
    String accountWaiting_sale_date;
    boolean accountWaiting_sale_option;
    String advisor;
    int j;
    int count_j;
    int lead_id;
    String address;
    boolean valid;
    String extension;
    String number;
    boolean validated;
    boolean mobile;
    String accessories;
    String allowed_odometer;
    int balance;
    String budget_max;
    String budget_min;
    String cash_down;
    String category;
    String category_rv;
    String client_number;
    String color_exterior;
    String color_interior;
    String comment;
    String condition;
    String end_contract_date;
    String end_warranty_date;
    String engine;
    String extended_warranty;
    String fuel;
    String length_max;
    String length_min;
    String license_plate;
    String make;
    String modality;
    String model;
    String odometer;
    String offer_number;
    String v_option;
    String order_number;
    String payment;
    String payment_frequency;
    String preparation;
    String price;
    String profit;
    String purchase_date;
    String rate;
    String recall;
    String recorded_date;
    String residual;
    String security_deposit;
    String sleeping;
    boolean sold;
    String sold_by;
    String sold_date;
    String stock;
    String stock_state;
    String term;
    boolean tire;
    String transmission;
    String trim;
    String url;
    String value;
    String vin;
    String warranty;
    String weight;
    String year;
    String year_max;
    String year_min;

    linksFirst = jsonResponse.stringOf("links.first");
    linksLast = jsonResponse.stringOf("links.last");
    linksPrev = jsonResponse.stringOf("links.prev");
    linksNext = jsonResponse.stringOf("links.next");
    metaCurrent_page = jsonResponse.IntOf("meta.current_page");
    metaFrom = jsonResponse.IntOf("meta.from");
    metaLast_page = jsonResponse.IntOf("meta.last_page");
    metaPath = jsonResponse.stringOf("meta.path");
    metaPer_page = jsonResponse.IntOf("meta.per_page");
    metaTo = jsonResponse.IntOf("meta.to");
    metaTotal = jsonResponse.IntOf("meta.total");
    i = 0;
    count_i = jsonResponse.SizeOfArray("data");
    while (i < count_i) {
        jsonResponse.put_I(i);
        id = jsonResponse.IntOf("data[i].id");
        created_at = jsonResponse.stringOf("data[i].created_at");
        updated_at = jsonResponse.stringOf("data[i].updated_at");
        account_id = jsonResponse.IntOf("data[i].account_id");
        address_line1 = jsonResponse.stringOf("data[i].address_line1");
        address_line2 = jsonResponse.stringOf("data[i].address_line2");
        appointment_date = jsonResponse.stringOf("data[i].appointment_date");
        appt_call = jsonResponse.BoolOf("data[i].appt_call");
        available_date = jsonResponse.stringOf("data[i].available_date");
        average_spending = jsonResponse.stringOf("data[i].average_spending");
        be_back_date = jsonResponse.stringOf("data[i].be_back_date");
        birth_date = jsonResponse.stringOf("data[i].birth_date");
        business = jsonResponse.stringOf("data[i].business");
        call_date = jsonResponse.stringOf("data[i].call_date");
        city = jsonResponse.stringOf("data[i].city");
        civility = jsonResponse.stringOf("data[i].civility");
        code = jsonResponse.stringOf("data[i].code");
        country = jsonResponse.stringOf("data[i].country");
        csi_date = jsonResponse.stringOf("data[i].csi_date");
        delivered_by_id = jsonResponse.stringOf("data[i].delivered_by_id");
        delivered_date = jsonResponse.stringOf("data[i].delivered_date");
        delivery_date = jsonResponse.stringOf("data[i].delivery_date");
        division = jsonResponse.stringOf("data[i].division");
        end_service_date = jsonResponse.stringOf("data[i].end_service_date");
        first_name = jsonResponse.stringOf("data[i].first_name");
        gas = jsonResponse.stringOf("data[i].gas");
        gender = jsonResponse.IntOf("data[i].gender");
        invoiced = jsonResponse.BoolOf("data[i].invoiced");
        last_name = jsonResponse.stringOf("data[i].last_name");
        last_visit_date = jsonResponse.stringOf("data[i].last_visit_date");
        locale = jsonResponse.stringOf("data[i].locale");
        loyalty = jsonResponse.stringOf("data[i].loyalty");
        next_visit_date = jsonResponse.stringOf("data[i].next_visit_date");
        odometer_last_visit = jsonResponse.stringOf("data[i].odometer_last_visit");
        open_work_order_date = jsonResponse.stringOf("data[i].open_work_order_date");
        planned_pick_up_date = jsonResponse.stringOf("data[i].planned_pick_up_date");
        postal_code = jsonResponse.stringOf("data[i].postal_code");
        prepaid = jsonResponse.stringOf("data[i].prepaid");
        prepared = jsonResponse.BoolOf("data[i].prepared");
        presented_date = jsonResponse.stringOf("data[i].presented_date");
        promised_date = jsonResponse.stringOf("data[i].promised_date");
        province = jsonResponse.stringOf("data[i].province");
        rating = jsonResponse.stringOf("data[i].rating");
        reached_client = jsonResponse.BoolOf("data[i].reached_client");
        refinanced_date = jsonResponse.stringOf("data[i].refinanced_date");
        repair_date = jsonResponse.stringOf("data[i].repair_date");
        repair_order = jsonResponse.stringOf("data[i].repair_order");
        result = jsonResponse.stringOf("data[i].result");
        road_test_date = jsonResponse.stringOf("data[i].road_test_date");
        sale_date = jsonResponse.stringOf("data[i].sale_date");
        second_contact = jsonResponse.stringOf("data[i].second_contact");
        second_contact_civility = jsonResponse.stringOf("data[i].second_contact_civility");
        segment = jsonResponse.stringOf("data[i].segment");
        service_cleaned = jsonResponse.BoolOf("data[i].service_cleaned");
        service_interval_km = jsonResponse.stringOf("data[i].service_interval_km");
        service_monthly_km = jsonResponse.stringOf("data[i].service_monthly_km");
        service_processIntention = jsonResponse.stringOf("data[i].service_process.intention");
        service_processTransport = jsonResponse.stringOf("data[i].service_process.transport");
        service_processWalk_around = jsonResponse.stringOf("data[i].service_process.walk_around");
        sex = jsonResponse.stringOf("data[i].sex");
        source = jsonResponse.stringOf("data[i].source");
        status = jsonResponse.stringOf("data[i].status");
        storage = jsonResponse.stringOf("data[i].storage");
        take_over_date = jsonResponse.stringOf("data[i].take_over_date");
        v_type = jsonResponse.stringOf("data[i].type");
        unsubscribe_all_date = jsonResponse.stringOf("data[i].unsubscribe_all_date");
        unsubscribe_call_date = jsonResponse.stringOf("data[i].unsubscribe_call_date");
        unsubscribe_email_date = jsonResponse.stringOf("data[i].unsubscribe_email_date");
        unsubscribe_sms_date = jsonResponse.stringOf("data[i].unsubscribe_sms_date");
        work_order = jsonResponse.stringOf("data[i].work_order");
        accountId = jsonResponse.IntOf("data[i].account.id");
        accountCreated_at = jsonResponse.stringOf("data[i].account.created_at");
        accountUpdated_at = jsonResponse.stringOf("data[i].account.updated_at");
        accountPartner_id = jsonResponse.IntOf("data[i].account.partner_id");
        accountActivity_report = jsonResponse.BoolOf("data[i].account.activity_report");
        accountCommercial = jsonResponse.BoolOf("data[i].account.commercial");
        accountEvent = jsonResponse.BoolOf("data[i].account.event");
        accountLeadxpress = jsonResponse.BoolOf("data[i].account.leadxpress");
        accountLoyalty = jsonResponse.BoolOf("data[i].account.loyalty");
        accountPhone_up = jsonResponse.BoolOf("data[i].account.phone_up");
        accountRenewal = jsonResponse.BoolOf("data[i].account.renewal");
        accountSale_table = jsonResponse.BoolOf("data[i].account.sale_table");
        accountService = jsonResponse.BoolOf("data[i].account.service");
        accountWalk_in = jsonResponse.BoolOf("data[i].account.walk_in");
        accountWebboost = jsonResponse.BoolOf("data[i].account.webboost");
        accountAccount_manager = jsonResponse.BoolOf("data[i].account.account_manager");
        accountActivation_date = jsonResponse.stringOf("data[i].account.activation_date");
        accountActive = jsonResponse.BoolOf("data[i].account.active");
        accountAssigned_lead = jsonResponse.BoolOf("data[i].account.assigned_lead");
        accountAuto_renewal = jsonResponse.BoolOf("data[i].account.auto_renewal");
        accountAuto_renewal_new = jsonResponse.BoolOf("data[i].account.auto_renewal_new");
        accountAuto_renewal_used = jsonResponse.BoolOf("data[i].account.auto_renewal_used");
        accountAutomation = jsonResponse.BoolOf("data[i].account.automation");
        accountBdc_advisor = jsonResponse.BoolOf("data[i].account.bdc_advisor");
        accountCalendar_options = jsonResponse.BoolOf("data[i].account.calendar_options");
        accountClient_card_fieldsProcessGas = jsonResponse.BoolOf("data[i].account.client_card_fields.process.gas");
        accountClient_card_fieldsProcessRecorded = jsonResponse.BoolOf("data[i].account.client_card_fields.process.recorded");
        accountClient_card_fieldsProcessAvailable = jsonResponse.BoolOf("data[i].account.client_card_fields.process.available");
        accountClient_card_fieldsProcessDiscounted = jsonResponse.BoolOf("data[i].account.client_card_fields.process.discounted");
        accountClient_card_fieldsCommercialProfit = jsonResponse.BoolOf("data[i].account.client_card_fields.commercial.profit");
        accountClient_card_fieldsCommercialExclude = jsonResponse.BoolOf("data[i].account.client_card_fields.commercial.exclude");
        accountClient_card_fieldsCommercialMeeting = jsonResponse.BoolOf("data[i].account.client_card_fields.commercial.meeting");
        accountClient_card_fieldsPerformanceDeposit = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.deposit");
        accountClient_card_fieldsPerformanceRefinanced = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.refinanced");
        accountClient_card_fieldsPerformanceDealer_tour = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.dealer_tour");
        accountClient_card_fieldsPerformanceWalk_around = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.walk_around");
        accountClient_card_fieldsPerformanceQualification = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.qualification");
        accountClient_card_fieldsPerformanceTwenty_four_hour = jsonResponse.BoolOf("data[i].account.client_card_fields.performance.twenty_four_hour");
        accountClient_card_fieldsGeneral_infoBudget = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.budget");
        accountClient_card_fieldsGeneral_infoSector = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.sector");
        accountClient_card_fieldsGeneral_infoCustom_1 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_1");
        accountClient_card_fieldsGeneral_infoCustom_2 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_2");
        accountClient_card_fieldsGeneral_infoCustom_3 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_3");
        accountClient_card_fieldsGeneral_infoCustom_4 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_4");
        accountClient_card_fieldsGeneral_infoCustom_5 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_5");
        accountClient_card_fieldsGeneral_infoCustom_6 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_6");
        accountClient_card_fieldsGeneral_infoCustom_7 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_7");
        accountClient_card_fieldsGeneral_infoCustom_8 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_8");
        accountClient_card_fieldsGeneral_infoCustom_9 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_9");
        accountClient_card_fieldsGeneral_infoCustom_10 = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.custom_10");
        accountClient_card_fieldsGeneral_infoCommunication_preference = jsonResponse.BoolOf("data[i].account.client_card_fields.general_info.communication_preference");
        accountClient_card_fieldsWanted_vehicleVin = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.vin");
        accountClient_card_fieldsWanted_vehicleFuel = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.fuel");
        accountClient_card_fieldsWanted_vehicleRate = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.rate");
        accountClient_card_fieldsWanted_vehicleTerm = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.term");
        accountClient_card_fieldsWanted_vehicleTire = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.tire");
        accountClient_card_fieldsWanted_vehicleYear = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.year");
        accountClient_card_fieldsWanted_vehicleColor = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.color");
        accountClient_card_fieldsWanted_vehiclePrice = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.price");
        accountClient_card_fieldsWanted_vehicleStock = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.stock");
        accountClient_card_fieldsWanted_vehicleTotal = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.total");
        accountClient_card_fieldsWanted_vehicleBudget = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.budget");
        accountClient_card_fieldsWanted_vehicleEngine = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.engine");
        accountClient_card_fieldsWanted_vehicleLength = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.length");
        accountClient_card_fieldsWanted_vehicleProfit = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.profit");
        accountClient_card_fieldsWanted_vehicleSuffix = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.suffix");
        accountClient_card_fieldsWanted_vehicleWeight = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.weight");
        accountClient_card_fieldsWanted_vehicleComment = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.comment");
        accountClient_card_fieldsWanted_vehicleMileage = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.mileage");
        accountClient_card_fieldsWanted_vehiclePayment = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.payment");
        accountClient_card_fieldsWanted_vehicleBodyType = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.bodyType");
        accountClient_card_fieldsWanted_vehicleCategory = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.category");
        accountClient_card_fieldsWanted_vehicleModality = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.modality");
        accountClient_card_fieldsWanted_vehicleResidual = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.residual");
        accountClient_card_fieldsWanted_vehicleSleeping = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.sleeping");
        accountClient_card_fieldsWanted_vehicleWarranty = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.warranty");
        accountClient_card_fieldsWanted_vehicleFrequency = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.frequency");
        accountClient_card_fieldsWanted_vehicleAccessories = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.accessories");
        accountClient_card_fieldsWanted_vehicleCategory_rv = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.category_rv");
        accountClient_card_fieldsWanted_vehiclePreparation = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.preparation");
        accountClient_card_fieldsWanted_vehicleInitial_cash = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.initial_cash");
        accountClient_card_fieldsWanted_vehicleOffer_number = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.offer_number");
        accountClient_card_fieldsWanted_vehicleOrder_number = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.order_number");
        accountClient_card_fieldsWanted_vehicleTransmission = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.transmission");
        accountClient_card_fieldsWanted_vehicleDocumentation = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.documentation");
        accountClient_card_fieldsWanted_vehicleDrivingWheels = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.drivingWheels");
        accountClient_card_fieldsWanted_vehicleColor_exterior = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.color_exterior");
        accountClient_card_fieldsWanted_vehicleColor_interior = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.color_interior");
        accountClient_card_fieldsWanted_vehicleAllowed_mileage = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.allowed_mileage");
        accountClient_card_fieldsWanted_vehicleSecurity_deposit = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.security_deposit");
        accountClient_card_fieldsWanted_vehicleEnd_contract_date = jsonResponse.BoolOf("data[i].account.client_card_fields.wanted_vehicle.end_contract_date");
        accountClient_card_fieldsExchange_vehicleVin = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.vin");
        accountClient_card_fieldsExchange_vehicleFuel = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.fuel");
        accountClient_card_fieldsExchange_vehicleLink = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.link");
        accountClient_card_fieldsExchange_vehicleRate = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.rate");
        accountClient_card_fieldsExchange_vehicleTerm = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.term");
        accountClient_card_fieldsExchange_vehicleYear = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.year");
        accountClient_card_fieldsExchange_vehicleColor = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.color");
        accountClient_card_fieldsExchange_vehiclePrice = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.price");
        accountClient_card_fieldsExchange_vehicleStock = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.stock");
        accountClient_card_fieldsExchange_vehicleValue = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.value");
        accountClient_card_fieldsExchange_vehicleBudget = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.budget");
        accountClient_card_fieldsExchange_vehicleEngine = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.engine");
        accountClient_card_fieldsExchange_vehicleLength = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.length");
        accountClient_card_fieldsExchange_vehicleProfit = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.profit");
        accountClient_card_fieldsExchange_vehicleSuffix = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.suffix");
        accountClient_card_fieldsExchange_vehicleWeight = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.weight");
        accountClient_card_fieldsExchange_vehicleBalance = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.balance");
        accountClient_card_fieldsExchange_vehicleComment = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.comment");
        accountClient_card_fieldsExchange_vehicleMileage = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.mileage");
        accountClient_card_fieldsExchange_vehiclePayment = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.payment");
        accountClient_card_fieldsExchange_vehicleRenewal = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.renewal");
        accountClient_card_fieldsExchange_vehicleSold_by = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.sold_by");
        accountClient_card_fieldsExchange_vehicleBodyType = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.bodyType");
        accountClient_card_fieldsExchange_vehicleCategory = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.category");
        accountClient_card_fieldsExchange_vehicleModality = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.modality");
        accountClient_card_fieldsExchange_vehicleResidual = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.residual");
        accountClient_card_fieldsExchange_vehicleSleeping = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.sleeping");
        accountClient_card_fieldsExchange_vehicleWarranty = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.warranty");
        accountClient_card_fieldsExchange_vehicleCondition = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.condition");
        accountClient_card_fieldsExchange_vehicleFrequency = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.frequency");
        accountClient_card_fieldsExchange_vehicleIntention = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.intention");
        accountClient_card_fieldsExchange_vehicleRefinance = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.refinance");
        accountClient_card_fieldsExchange_vehicleRequested = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.requested");
        accountClient_card_fieldsExchange_vehicleSold_date = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.sold_date");
        accountClient_card_fieldsExchange_vehicleCategory_rv = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.category_rv");
        accountClient_card_fieldsExchange_vehicleInstitution = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.institution");
        accountClient_card_fieldsExchange_vehicleInitial_cash = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.initial_cash");
        accountClient_card_fieldsExchange_vehicleOffer_number = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.offer_number");
        accountClient_card_fieldsExchange_vehicleTransmission = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.transmission");
        accountClient_card_fieldsExchange_vehicleDrivingWheels = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.drivingWheels");
        accountClient_card_fieldsExchange_vehicleColor_exterior = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.color_exterior");
        accountClient_card_fieldsExchange_vehicleColor_interior = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.color_interior");
        accountClient_card_fieldsExchange_vehicleAllowed_mileage = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.allowed_mileage");
        accountClient_card_fieldsExchange_vehicleSecurity_deposit = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.security_deposit");
        accountClient_card_fieldsExchange_vehicleEnd_contract_date = jsonResponse.BoolOf("data[i].account.client_card_fields.exchange_vehicle.end_contract_date");
        accountClient_number = jsonResponse.BoolOf("data[i].account.client_number");
        accountConfirmation_appt = jsonResponse.BoolOf("data[i].account.confirmation_appt");
        accountCredit = jsonResponse.BoolOf("data[i].account.credit");
        accountCsi = jsonResponse.BoolOf("data[i].account.csi");
        accountCsi_used = jsonResponse.BoolOf("data[i].account.csi_used");
        accountDefault_deliveryman_user_id = jsonResponse.stringOf("data[i].account.default_deliveryman_user_id");
        accountDelivered_by = jsonResponse.BoolOf("data[i].account.delivered_by");
        accountDisable_communication_audio = jsonResponse.BoolOf("data[i].account.disable_communication_audio");
        accountDuplicates = jsonResponse.BoolOf("data[i].account.duplicates");
        accountGuest_action = jsonResponse.BoolOf("data[i].account.guest_action");
        accountEmail_client = jsonResponse.BoolOf("data[i].account.email_client");
        accountIn_turn = jsonResponse.BoolOf("data[i].account.in_turn");
        accountIn_turn_director_management = jsonResponse.BoolOf("data[i].account.in_turn_director_management");
        accountLeads_other_division = jsonResponse.BoolOf("data[i].account.leads_other_division");
        accountLeadxpress_optionPriority = jsonResponse.IntOf("data[i].account.leadxpress_option.priority");
        accountLeadxpress_optionReminderFrequency = jsonResponse.IntOf("data[i].account.leadxpress_option.reminder.frequency");
        accountLeadxpress_optionReminderRecurrence = jsonResponse.IntOf("data[i].account.leadxpress_option.reminder.recurrence");
        accountLeadxpress_optionScheduleAccount = jsonResponse.BoolOf("data[i].account.leadxpress_option.schedule.account");
        accountLeadxpress_optionScheduleAdvisor = jsonResponse.BoolOf("data[i].account.leadxpress_option.schedule.advisor");
        accountLimited_audio_access = jsonResponse.BoolOf("data[i].account.limited_audio_access");
        accountLogo = jsonResponse.stringOf("data[i].account.logo");
        accountLogo_en = jsonResponse.stringOf("data[i].account.logo_en");
        accountMandatory_coordinate = jsonResponse.BoolOf("data[i].account.mandatory_coordinate");
        accountManually_status = jsonResponse.BoolOf("data[i].account.manually_status");
        accountMerge_rule = jsonResponse.stringOf("data[i].account.merge_rule");
        accountMonth_start_day = jsonResponse.IntOf("data[i].account.month_start_day");
        accountName = jsonResponse.stringOf("data[i].account.name");
        accountNiotext = jsonResponse.BoolOf("data[i].account.niotext");
        accountNiotext_phone = jsonResponse.BoolOf("data[i].account.niotext_phone");
        accountPhone = jsonResponse.stringOf("data[i].account.phone");
        accountPower_sport = jsonResponse.BoolOf("data[i].account.power_sport");
        accountProcess = jsonResponse.BoolOf("data[i].account.process");
        accountRecreative_special = jsonResponse.BoolOf("data[i].account.recreative_special");
        accountResult_date_validation = jsonResponse.BoolOf("data[i].account.result_date_validation");
        accountSale_accessories = jsonResponse.BoolOf("data[i].account.sale_accessories");
        accountSale_by_phone = jsonResponse.BoolOf("data[i].account.sale_by_phone");
        accountSale_date_month = jsonResponse.BoolOf("data[i].account.sale_date_month");
        accountSale_table_optionsAccessory_column = jsonResponse.BoolOf("data[i].account.sale_table_options.accessory_column");
        accountSale_table_optionsCommercial_column = jsonResponse.BoolOf("data[i].account.sale_table_options.commercial_column");
        accountSale_table_optionsDivision_grouped_total_column = jsonResponse.BoolOf("data[i].account.sale_table_options.division_grouped_total_column");
        accountSale_validation = jsonResponse.BoolOf("data[i].account.sale_validation");
        accountScan = jsonResponse.BoolOf("data[i].account.scan");
        accountStock_required_for_sale = jsonResponse.BoolOf("data[i].account.stock_required_for_sale");
        accountTake_over_director = jsonResponse.BoolOf("data[i].account.take_over_director");
        accountTrade_report = jsonResponse.BoolOf("data[i].account.trade_report");
        accountUnrestricted_assignment = jsonResponse.BoolOf("data[i].account.unrestricted_assignment");
        accountUnsubscribe = jsonResponse.BoolOf("data[i].account.unsubscribe");
        accountUntreated_lead = jsonResponse.BoolOf("data[i].account.untreated_lead");
        accountVehicle_model_text = jsonResponse.BoolOf("data[i].account.vehicle_model_text");
        accountVehicle_text = jsonResponse.BoolOf("data[i].account.vehicle_text");
        accountVerified_sale = jsonResponse.BoolOf("data[i].account.verified_sale");
        accountVin_decoder = jsonResponse.BoolOf("data[i].account.vin_decoder");
        accountWaiting_sale_date = jsonResponse.stringOf("data[i].account.waiting_sale_date");
        accountWaiting_sale_option = jsonResponse.BoolOf("data[i].account.waiting_sale_option");
        advisor = jsonResponse.stringOf("data[i].advisor");
        j = 0;
        count_j = jsonResponse.SizeOfArray("data[i].emails");
        while (j < count_j) {
            jsonResponse.put_J(j);
            id = jsonResponse.IntOf("data[i].emails[j].id");
            created_at = jsonResponse.stringOf("data[i].emails[j].created_at");
            updated_at = jsonResponse.stringOf("data[i].emails[j].updated_at");
            lead_id = jsonResponse.IntOf("data[i].emails[j].lead_id");
            address = jsonResponse.stringOf("data[i].emails[j].address");
            v_type = jsonResponse.stringOf("data[i].emails[j].type");
            valid = jsonResponse.BoolOf("data[i].emails[j].valid");
            j = j + 1;
            }

        j = 0;
        count_j = jsonResponse.SizeOfArray("data[i].phones");
        while (j < count_j) {
            jsonResponse.put_J(j);
            id = jsonResponse.IntOf("data[i].phones[j].id");
            created_at = jsonResponse.stringOf("data[i].phones[j].created_at");
            updated_at = jsonResponse.stringOf("data[i].phones[j].updated_at");
            lead_id = jsonResponse.IntOf("data[i].phones[j].lead_id");
            extension = jsonResponse.stringOf("data[i].phones[j].extension");
            number = jsonResponse.stringOf("data[i].phones[j].number");
            v_type = jsonResponse.stringOf("data[i].phones[j].type");
            valid = jsonResponse.BoolOf("data[i].phones[j].valid");
            validated = jsonResponse.BoolOf("data[i].phones[j].validated");
            mobile = jsonResponse.BoolOf("data[i].phones[j].mobile");
            j = j + 1;
            }

        j = 0;
        count_j = jsonResponse.SizeOfArray("data[i].vehicles");
        while (j < count_j) {
            jsonResponse.put_J(j);
            id = jsonResponse.IntOf("data[i].vehicles[j].id");
            created_at = jsonResponse.stringOf("data[i].vehicles[j].created_at");
            updated_at = jsonResponse.stringOf("data[i].vehicles[j].updated_at");
            lead_id = jsonResponse.IntOf("data[i].vehicles[j].lead_id");
            accessories = jsonResponse.stringOf("data[i].vehicles[j].accessories");
            allowed_odometer = jsonResponse.stringOf("data[i].vehicles[j].allowed_odometer");
            balance = jsonResponse.IntOf("data[i].vehicles[j].balance");
            budget_max = jsonResponse.stringOf("data[i].vehicles[j].budget_max");
            budget_min = jsonResponse.stringOf("data[i].vehicles[j].budget_min");
            cash_down = jsonResponse.stringOf("data[i].vehicles[j].cash_down");
            category = jsonResponse.stringOf("data[i].vehicles[j].category");
            category_rv = jsonResponse.stringOf("data[i].vehicles[j].category_rv");
            client_number = jsonResponse.stringOf("data[i].vehicles[j].client_number");
            color_exterior = jsonResponse.stringOf("data[i].vehicles[j].color_exterior");
            color_interior = jsonResponse.stringOf("data[i].vehicles[j].color_interior");
            comment = jsonResponse.stringOf("data[i].vehicles[j].comment");
            condition = jsonResponse.stringOf("data[i].vehicles[j].condition");
            end_contract_date = jsonResponse.stringOf("data[i].vehicles[j].end_contract_date");
            end_warranty_date = jsonResponse.stringOf("data[i].vehicles[j].end_warranty_date");
            engine = jsonResponse.stringOf("data[i].vehicles[j].engine");
            extended_warranty = jsonResponse.stringOf("data[i].vehicles[j].extended_warranty");
            fuel = jsonResponse.stringOf("data[i].vehicles[j].fuel");
            length_max = jsonResponse.stringOf("data[i].vehicles[j].length_max");
            length_min = jsonResponse.stringOf("data[i].vehicles[j].length_min");
            license_plate = jsonResponse.stringOf("data[i].vehicles[j].license_plate");
            make = jsonResponse.stringOf("data[i].vehicles[j].make");
            modality = jsonResponse.stringOf("data[i].vehicles[j].modality");
            model = jsonResponse.stringOf("data[i].vehicles[j].model");
            odometer = jsonResponse.stringOf("data[i].vehicles[j].odometer");
            offer_number = jsonResponse.stringOf("data[i].vehicles[j].offer_number");
            v_option = jsonResponse.stringOf("data[i].vehicles[j].option");
            order_number = jsonResponse.stringOf("data[i].vehicles[j].order_number");
            payment = jsonResponse.stringOf("data[i].vehicles[j].payment");
            payment_frequency = jsonResponse.stringOf("data[i].vehicles[j].payment_frequency");
            preparation = jsonResponse.stringOf("data[i].vehicles[j].preparation");
            price = jsonResponse.stringOf("data[i].vehicles[j].price");
            profit = jsonResponse.stringOf("data[i].vehicles[j].profit");
            purchase_date = jsonResponse.stringOf("data[i].vehicles[j].purchase_date");
            rate = jsonResponse.stringOf("data[i].vehicles[j].rate");
            recall = jsonResponse.stringOf("data[i].vehicles[j].recall");
            recorded_date = jsonResponse.stringOf("data[i].vehicles[j].recorded_date");
            residual = jsonResponse.stringOf("data[i].vehicles[j].residual");
            security_deposit = jsonResponse.stringOf("data[i].vehicles[j].security_deposit");
            sleeping = jsonResponse.stringOf("data[i].vehicles[j].sleeping");
            sold = jsonResponse.BoolOf("data[i].vehicles[j].sold");
            sold_by = jsonResponse.stringOf("data[i].vehicles[j].sold_by");
            sold_date = jsonResponse.stringOf("data[i].vehicles[j].sold_date");
            stock = jsonResponse.stringOf("data[i].vehicles[j].stock");
            stock_state = jsonResponse.stringOf("data[i].vehicles[j].stock_state");
            term = jsonResponse.stringOf("data[i].vehicles[j].term");
            tire = jsonResponse.BoolOf("data[i].vehicles[j].tire");
            transmission = jsonResponse.stringOf("data[i].vehicles[j].transmission");
            trim = jsonResponse.stringOf("data[i].vehicles[j].trim");
            v_type = jsonResponse.stringOf("data[i].vehicles[j].type");
            url = jsonResponse.stringOf("data[i].vehicles[j].url");
            value = jsonResponse.stringOf("data[i].vehicles[j].value");
            vin = jsonResponse.stringOf("data[i].vehicles[j].vin");
            warranty = jsonResponse.stringOf("data[i].vehicles[j].warranty");
            weight = jsonResponse.stringOf("data[i].vehicles[j].weight");
            year = jsonResponse.stringOf("data[i].vehicles[j].year");
            year_max = jsonResponse.stringOf("data[i].vehicles[j].year_max");
            year_min = jsonResponse.stringOf("data[i].vehicles[j].year_min");
            j = j + 1;
            }

        j = 0;
        count_j = jsonResponse.SizeOfArray("data[i].products");
        while (j < count_j) {
            jsonResponse.put_J(j);
            j = j + 1;
            }

        i = i + 1;
        }


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.