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

Go 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
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

 

 

 

(Go) Activix CRM Update a Lead

Demonstrates how to update a lead and returns the updated lead.

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

Chilkat Go Downloads

Go Package for Windows, MacOS, Linux, Alpine Linux, Solaris

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

    http := chilkat.NewHttp()

    http.SetAuthToken("ACCESS_TOKEN")

    http.SetAccept("application/json")

    // The following JSON is sent in the request body:

    // {
    //   "first_name": "John",
    //   "last_name": "Doe",
    //   "advisor": {
    //     "first_name": "Johan",
    //     "last_name": "Strauss"
    //   }
    // }

    // Use this online tool to generate the code from sample JSON: 
    // Generate Code to Create JSON

    jsonRequestBody := chilkat.NewJsonObject()
    jsonRequestBody.UpdateString("first_name","John")
    jsonRequestBody.UpdateString("last_name","Doe")
    jsonRequestBody.UpdateString("advisor.first_name","Johan")
    jsonRequestBody.UpdateString("advisor.last_name","Strauss")

    var url *string = new(string)

    resp := http.PText("PUT",*url,*jsonRequestBody.Emit(),"utf-8","application/json",false,false)
    if http.LastMethodSuccess() != true {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        jsonRequestBody.DisposeJsonObject()
        return
    }

    fmt.Println("Response Status Code: ", resp.StatusCode())

    jsonResponse := chilkat.NewJsonObject()
    jsonResponse.Load(resp.BodyStr())
    jsonResponse.SetEmitCompact(false)
    fmt.Println(*jsonResponse.Emit())

    if resp.StatusCode() >= 300 {
        fmt.Println("Failed.")
        resp.DisposeHttpResponse()
        http.DisposeHttp()
        jsonRequestBody.DisposeJsonObject()
        jsonResponse.DisposeJsonObject()
        return
    }

    resp.DisposeHttpResponse()

    // Sample output...
    // (See the parsing code below..)
    // 
    // Use the 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,
    //                 ...
    //             },
    //             ...
    //         ]
    //     }
    // }

    var dataId int
    var dataCreated_at *string = new(string)
    var dataUpdated_at *string = new(string)
    var dataAccount_id int
    var dataAddress_line1 *string = new(string)
    var dataAddress_line2 *string = new(string)
    var dataAppointment_date *string = new(string)
    var dataAppt_call bool
    var dataAvailable_date *string = new(string)
    var dataAverage_spending *string = new(string)
    var dataBe_back_date *string = new(string)
    var dataBirth_date *string = new(string)
    var dataBusiness *string = new(string)
    var dataCall_date *string = new(string)
    var dataCity *string = new(string)
    var dataCivility *string = new(string)
    var dataCode *string = new(string)
    var dataCountry *string = new(string)
    var dataCsi_date *string = new(string)
    var dataDelivered_by_id *string = new(string)
    var dataDelivered_date *string = new(string)
    var dataDelivery_date *string = new(string)
    var dataDivision *string = new(string)
    var dataEnd_service_date *string = new(string)
    var dataFirst_name *string = new(string)
    var dataGas *string = new(string)
    var dataGender int
    var dataInvoiced bool
    var dataLast_name *string = new(string)
    var dataLast_visit_date *string = new(string)
    var dataLocale *string = new(string)
    var dataLoyalty *string = new(string)
    var dataNext_visit_date *string = new(string)
    var dataOdometer_last_visit *string = new(string)
    var dataOpen_work_order_date *string = new(string)
    var dataPlanned_pick_up_date *string = new(string)
    var dataPostal_code *string = new(string)
    var dataPrepaid *string = new(string)
    var dataPrepared bool
    var dataPresented_date *string = new(string)
    var dataPromised_date *string = new(string)
    var dataProvince *string = new(string)
    var dataRating *string = new(string)
    var dataReached_client bool
    var dataRefinanced_date *string = new(string)
    var dataRepair_date *string = new(string)
    var dataRepair_order *string = new(string)
    var dataResult *string = new(string)
    var dataRoad_test_date *string = new(string)
    var dataSale_date *string = new(string)
    var dataSecond_contact *string = new(string)
    var dataSecond_contact_civility *string = new(string)
    var dataSegment *string = new(string)
    var dataService_cleaned bool
    var dataService_interval_km *string = new(string)
    var dataService_monthly_km *string = new(string)
    var dataService_processIntention *string = new(string)
    var dataService_processTransport *string = new(string)
    var dataService_processWalk_around *string = new(string)
    var dataSex *string = new(string)
    var dataSource *string = new(string)
    var dataStatus *string = new(string)
    var dataStorage *string = new(string)
    var dataTake_over_date *string = new(string)
    var dataType *string = new(string)
    var dataUnsubscribe_all_date *string = new(string)
    var dataUnsubscribe_call_date *string = new(string)
    var dataUnsubscribe_email_date *string = new(string)
    var dataUnsubscribe_sms_date *string = new(string)
    var dataWork_order *string = new(string)
    var dataAccountId int
    var dataAccountCreated_at *string = new(string)
    var dataAccountUpdated_at *string = new(string)
    var dataAccountPartner_id int
    var dataAccountActivity_report bool
    var dataAccountCommercial bool
    var dataAccountEvent bool
    var dataAccountLeadxpress bool
    var dataAccountLoyalty bool
    var dataAccountPhone_up bool
    var dataAccountRenewal bool
    var dataAccountSale_table bool
    var dataAccountService bool
    var dataAccountWalk_in bool
    var dataAccountWebboost bool
    var dataAccountAccount_manager bool
    var dataAccountActivation_date *string = new(string)
    var dataAccountActive bool
    var dataAccountAssigned_lead bool
    var dataAccountAuto_renewal bool
    var dataAccountAuto_renewal_new bool
    var dataAccountAuto_renewal_used bool
    var dataAccountAutomation bool
    var dataAccountBdc_advisor bool
    var dataAccountCalendar_options bool
    var dataAccountClient_card_fieldsProcessGas bool
    var dataAccountClient_card_fieldsProcessRecorded bool
    var dataAccountClient_card_fieldsProcessAvailable bool
    var dataAccountClient_card_fieldsProcessDiscounted bool
    var dataAccountClient_card_fieldsCommercialProfit bool
    var dataAccountClient_card_fieldsCommercialExclude bool
    var dataAccountClient_card_fieldsCommercialMeeting bool
    var dataAccountClient_card_fieldsPerformanceDeposit bool
    var dataAccountClient_card_fieldsPerformanceRefinanced bool
    var dataAccountClient_card_fieldsPerformanceDealer_tour bool
    var dataAccountClient_card_fieldsPerformanceWalk_around bool
    var dataAccountClient_card_fieldsPerformanceQualification bool
    var dataAccountClient_card_fieldsPerformanceTwenty_four_hour bool
    var dataAccountClient_card_fieldsGeneral_infoBudget bool
    var dataAccountClient_card_fieldsGeneral_infoSector bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_1 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_2 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_3 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_4 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_5 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_6 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_7 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_8 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_9 bool
    var dataAccountClient_card_fieldsGeneral_infoCustom_10 bool
    var dataAccountClient_card_fieldsGeneral_infoCommunication_preference bool
    var dataAccountClient_card_fieldsWanted_vehicleVin bool
    var dataAccountClient_card_fieldsWanted_vehicleFuel bool
    var dataAccountClient_card_fieldsWanted_vehicleRate bool
    var dataAccountClient_card_fieldsWanted_vehicleTerm bool
    var dataAccountClient_card_fieldsWanted_vehicleTire bool
    var dataAccountClient_card_fieldsWanted_vehicleYear bool
    var dataAccountClient_card_fieldsWanted_vehicleColor bool
    var dataAccountClient_card_fieldsWanted_vehiclePrice bool
    var dataAccountClient_card_fieldsWanted_vehicleStock bool
    var dataAccountClient_card_fieldsWanted_vehicleTotal bool
    var dataAccountClient_card_fieldsWanted_vehicleBudget bool
    var dataAccountClient_card_fieldsWanted_vehicleEngine bool
    var dataAccountClient_card_fieldsWanted_vehicleLength bool
    var dataAccountClient_card_fieldsWanted_vehicleProfit bool
    var dataAccountClient_card_fieldsWanted_vehicleSuffix bool
    var dataAccountClient_card_fieldsWanted_vehicleWeight bool
    var dataAccountClient_card_fieldsWanted_vehicleComment bool
    var dataAccountClient_card_fieldsWanted_vehicleMileage bool
    var dataAccountClient_card_fieldsWanted_vehiclePayment bool
    var dataAccountClient_card_fieldsWanted_vehicleBodyType bool
    var dataAccountClient_card_fieldsWanted_vehicleCategory bool
    var dataAccountClient_card_fieldsWanted_vehicleModality bool
    var dataAccountClient_card_fieldsWanted_vehicleResidual bool
    var dataAccountClient_card_fieldsWanted_vehicleSleeping bool
    var dataAccountClient_card_fieldsWanted_vehicleWarranty bool
    var dataAccountClient_card_fieldsWanted_vehicleFrequency bool
    var dataAccountClient_card_fieldsWanted_vehicleAccessories bool
    var dataAccountClient_card_fieldsWanted_vehicleCategory_rv bool
    var dataAccountClient_card_fieldsWanted_vehiclePreparation bool
    var dataAccountClient_card_fieldsWanted_vehicleInitial_cash bool
    var dataAccountClient_card_fieldsWanted_vehicleOffer_number bool
    var dataAccountClient_card_fieldsWanted_vehicleOrder_number bool
    var dataAccountClient_card_fieldsWanted_vehicleTransmission bool
    var dataAccountClient_card_fieldsWanted_vehicleDocumentation bool
    var dataAccountClient_card_fieldsWanted_vehicleDrivingWheels bool
    var dataAccountClient_card_fieldsWanted_vehicleColor_exterior bool
    var dataAccountClient_card_fieldsWanted_vehicleColor_interior bool
    var dataAccountClient_card_fieldsWanted_vehicleAllowed_mileage bool
    var dataAccountClient_card_fieldsWanted_vehicleSecurity_deposit bool
    var dataAccountClient_card_fieldsWanted_vehicleEnd_contract_date bool
    var dataAccountClient_card_fieldsExchange_vehicleVin bool
    var dataAccountClient_card_fieldsExchange_vehicleFuel bool
    var dataAccountClient_card_fieldsExchange_vehicleLink bool
    var dataAccountClient_card_fieldsExchange_vehicleRate bool
    var dataAccountClient_card_fieldsExchange_vehicleTerm bool
    var dataAccountClient_card_fieldsExchange_vehicleYear bool
    var dataAccountClient_card_fieldsExchange_vehicleColor bool
    var dataAccountClient_card_fieldsExchange_vehiclePrice bool
    var dataAccountClient_card_fieldsExchange_vehicleStock bool
    var dataAccountClient_card_fieldsExchange_vehicleValue bool
    var dataAccountClient_card_fieldsExchange_vehicleBudget bool
    var dataAccountClient_card_fieldsExchange_vehicleEngine bool
    var dataAccountClient_card_fieldsExchange_vehicleLength bool
    var dataAccountClient_card_fieldsExchange_vehicleProfit bool
    var dataAccountClient_card_fieldsExchange_vehicleSuffix bool
    var dataAccountClient_card_fieldsExchange_vehicleWeight bool
    var dataAccountClient_card_fieldsExchange_vehicleBalance bool
    var dataAccountClient_card_fieldsExchange_vehicleComment bool
    var dataAccountClient_card_fieldsExchange_vehicleMileage bool
    var dataAccountClient_card_fieldsExchange_vehiclePayment bool
    var dataAccountClient_card_fieldsExchange_vehicleRenewal bool
    var dataAccountClient_card_fieldsExchange_vehicleSold_by bool
    var dataAccountClient_card_fieldsExchange_vehicleBodyType bool
    var dataAccountClient_card_fieldsExchange_vehicleCategory bool
    var dataAccountClient_card_fieldsExchange_vehicleModality bool
    var dataAccountClient_card_fieldsExchange_vehicleResidual bool
    var dataAccountClient_card_fieldsExchange_vehicleSleeping bool
    var dataAccountClient_card_fieldsExchange_vehicleWarranty bool
    var dataAccountClient_card_fieldsExchange_vehicleCondition bool
    var dataAccountClient_card_fieldsExchange_vehicleFrequency bool
    var dataAccountClient_card_fieldsExchange_vehicleIntention bool
    var dataAccountClient_card_fieldsExchange_vehicleRefinance bool
    var dataAccountClient_card_fieldsExchange_vehicleRequested bool
    var dataAccountClient_card_fieldsExchange_vehicleSold_date bool
    var dataAccountClient_card_fieldsExchange_vehicleCategory_rv bool
    var dataAccountClient_card_fieldsExchange_vehicleInstitution bool
    var dataAccountClient_card_fieldsExchange_vehicleInitial_cash bool
    var dataAccountClient_card_fieldsExchange_vehicleOffer_number bool
    var dataAccountClient_card_fieldsExchange_vehicleTransmission bool
    var dataAccountClient_card_fieldsExchange_vehicleDrivingWheels bool
    var dataAccountClient_card_fieldsExchange_vehicleColor_exterior bool
    var dataAccountClient_card_fieldsExchange_vehicleColor_interior bool
    var dataAccountClient_card_fieldsExchange_vehicleAllowed_mileage bool
    var dataAccountClient_card_fieldsExchange_vehicleSecurity_deposit bool
    var dataAccountClient_card_fieldsExchange_vehicleEnd_contract_date bool
    var dataAccountClient_number bool
    var dataAccountConfirmation_appt bool
    var dataAccountCredit bool
    var dataAccountCsi bool
    var dataAccountCsi_used bool
    var dataAccountDefault_deliveryman_user_id *string = new(string)
    var dataAccountDelivered_by bool
    var dataAccountDisable_communication_audio bool
    var dataAccountDuplicates bool
    var dataAccountGuest_action bool
    var dataAccountEmail_client bool
    var dataAccountIn_turn bool
    var dataAccountIn_turn_director_management bool
    var dataAccountLeads_other_division bool
    var dataAccountLeadxpress_optionPriority int
    var dataAccountLeadxpress_optionReminderFrequency int
    var dataAccountLeadxpress_optionReminderRecurrence int
    var dataAccountLeadxpress_optionScheduleAccount bool
    var dataAccountLeadxpress_optionScheduleAdvisor bool
    var dataAccountLimited_audio_access bool
    var dataAccountLogo *string = new(string)
    var dataAccountLogo_en *string = new(string)
    var dataAccountMandatory_coordinate bool
    var dataAccountManually_status bool
    var dataAccountMerge_rule *string = new(string)
    var dataAccountMonth_start_day int
    var dataAccountName *string = new(string)
    var dataAccountNiotext bool
    var dataAccountNiotext_phone bool
    var dataAccountPhone *string = new(string)
    var dataAccountPower_sport bool
    var dataAccountProcess bool
    var dataAccountRecreative_special bool
    var dataAccountResult_date_validation bool
    var dataAccountSale_accessories bool
    var dataAccountSale_by_phone bool
    var dataAccountSale_date_month bool
    var dataAccountSale_table_optionsAccessory_column bool
    var dataAccountSale_table_optionsCommercial_column bool
    var dataAccountSale_table_optionsDivision_grouped_total_column bool
    var dataAccountSale_validation bool
    var dataAccountScan bool
    var dataAccountStock_required_for_sale bool
    var dataAccountTake_over_director bool
    var dataAccountTrade_report bool
    var dataAccountUnrestricted_assignment bool
    var dataAccountUnsubscribe bool
    var dataAccountUntreated_lead bool
    var dataAccountVehicle_model_text bool
    var dataAccountVehicle_text bool
    var dataAccountVerified_sale bool
    var dataAccountVin_decoder bool
    var dataAccountWaiting_sale_date *string = new(string)
    var dataAccountWaiting_sale_option bool
    var dataAdvisor *string = new(string)
    var dataBdc *string = new(string)
    var dataCommercial *string = new(string)
    var dataService_advisor *string = new(string)
    var dataService_agent *string = new(string)
    var i int
    var count_i int
    var id int
    var created_at *string = new(string)
    var updated_at *string = new(string)
    var lead_id int
    var address *string = new(string)
    var v_type *string = new(string)
    var valid bool
    var extension *string = new(string)
    var number *string = new(string)
    var validated bool
    var mobile bool
    var accessories *string = new(string)
    var allowed_odometer *string = new(string)
    var balance int
    var budget_max *string = new(string)
    var budget_min *string = new(string)
    var cash_down *string = new(string)
    var category *string = new(string)
    var category_rv *string = new(string)
    var client_number *string = new(string)
    var color_exterior *string = new(string)
    var color_interior *string = new(string)
    var comment *string = new(string)
    var condition *string = new(string)
    var end_contract_date *string = new(string)
    var end_warranty_date *string = new(string)
    var engine *string = new(string)
    var extended_warranty *string = new(string)
    var fuel *string = new(string)
    var length_max *string = new(string)
    var length_min *string = new(string)
    var license_plate *string = new(string)
    var make *string = new(string)
    var modality *string = new(string)
    var model *string = new(string)
    var odometer *string = new(string)
offer_    var number *string = new(string)
    var v_option *string = new(string)
    var order_number *string = new(string)
    var payment *string = new(string)
    var payment_frequency *string = new(string)
    var preparation *string = new(string)
    var price *string = new(string)
    var profit *string = new(string)
    var purchase_date *string = new(string)
    var rate *string = new(string)
    var recall *string = new(string)
    var recorded_date *string = new(string)
    var residual *string = new(string)
    var security_deposit *string = new(string)
    var sleeping *string = new(string)
    var sold bool
    var sold_by *string = new(string)
    var sold_date *string = new(string)
    var stock *string = new(string)
    var stock_state *string = new(string)
    var term *string = new(string)
    var tire bool
    var transmission *string = new(string)
    var trim *string = new(string)
    var url *string = new(string)
    var value *string = new(string)
    var vin *string = new(string)
    var warranty *string = new(string)
    var weight *string = new(string)
    var year *string = new(string)
    var year_max *string = new(string)
    var year_min *string = new(string)

    dataId = jsonResponse.IntOf("data.id")
    dataCreated_at = jsonResponse.StringOf("data.created_at")
    dataUpdated_at = jsonResponse.StringOf("data.updated_at")
    dataAccount_id = jsonResponse.IntOf("data.account_id")
    dataAddress_line1 = jsonResponse.StringOf("data.address_line1")
    dataAddress_line2 = jsonResponse.StringOf("data.address_line2")
    dataAppointment_date = jsonResponse.StringOf("data.appointment_date")
    dataAppt_call = jsonResponse.BoolOf("data.appt_call")
    dataAvailable_date = jsonResponse.StringOf("data.available_date")
    dataAverage_spending = jsonResponse.StringOf("data.average_spending")
    dataBe_back_date = jsonResponse.StringOf("data.be_back_date")
    dataBirth_date = jsonResponse.StringOf("data.birth_date")
    dataBusiness = jsonResponse.StringOf("data.business")
    dataCall_date = jsonResponse.StringOf("data.call_date")
    dataCity = jsonResponse.StringOf("data.city")
    dataCivility = jsonResponse.StringOf("data.civility")
    dataCode = jsonResponse.StringOf("data.code")
    dataCountry = jsonResponse.StringOf("data.country")
    dataCsi_date = jsonResponse.StringOf("data.csi_date")
    dataDelivered_by_id = jsonResponse.StringOf("data.delivered_by_id")
    dataDelivered_date = jsonResponse.StringOf("data.delivered_date")
    dataDelivery_date = jsonResponse.StringOf("data.delivery_date")
    dataDivision = jsonResponse.StringOf("data.division")
    dataEnd_service_date = jsonResponse.StringOf("data.end_service_date")
    dataFirst_name = jsonResponse.StringOf("data.first_name")
    dataGas = jsonResponse.StringOf("data.gas")
    dataGender = jsonResponse.IntOf("data.gender")
    dataInvoiced = jsonResponse.BoolOf("data.invoiced")
    dataLast_name = jsonResponse.StringOf("data.last_name")
    dataLast_visit_date = jsonResponse.StringOf("data.last_visit_date")
    dataLocale = jsonResponse.StringOf("data.locale")
    dataLoyalty = jsonResponse.StringOf("data.loyalty")
    dataNext_visit_date = jsonResponse.StringOf("data.next_visit_date")
    dataOdometer_last_visit = jsonResponse.StringOf("data.odometer_last_visit")
    dataOpen_work_order_date = jsonResponse.StringOf("data.open_work_order_date")
    dataPlanned_pick_up_date = jsonResponse.StringOf("data.planned_pick_up_date")
    dataPostal_code = jsonResponse.StringOf("data.postal_code")
    dataPrepaid = jsonResponse.StringOf("data.prepaid")
    dataPrepared = jsonResponse.BoolOf("data.prepared")
    dataPresented_date = jsonResponse.StringOf("data.presented_date")
    dataPromised_date = jsonResponse.StringOf("data.promised_date")
    dataProvince = jsonResponse.StringOf("data.province")
    dataRating = jsonResponse.StringOf("data.rating")
    dataReached_client = jsonResponse.BoolOf("data.reached_client")
    dataRefinanced_date = jsonResponse.StringOf("data.refinanced_date")
    dataRepair_date = jsonResponse.StringOf("data.repair_date")
    dataRepair_order = jsonResponse.StringOf("data.repair_order")
    dataResult = jsonResponse.StringOf("data.result")
    dataRoad_test_date = jsonResponse.StringOf("data.road_test_date")
    dataSale_date = jsonResponse.StringOf("data.sale_date")
    dataSecond_contact = jsonResponse.StringOf("data.second_contact")
    dataSecond_contact_civility = jsonResponse.StringOf("data.second_contact_civility")
    dataSegment = jsonResponse.StringOf("data.segment")
    dataService_cleaned = jsonResponse.BoolOf("data.service_cleaned")
    dataService_interval_km = jsonResponse.StringOf("data.service_interval_km")
    dataService_monthly_km = jsonResponse.StringOf("data.service_monthly_km")
    dataService_processIntention = jsonResponse.StringOf("data.service_process.intention")
    dataService_processTransport = jsonResponse.StringOf("data.service_process.transport")
    dataService_processWalk_around = jsonResponse.StringOf("data.service_process.walk_around")
    dataSex = jsonResponse.StringOf("data.sex")
    dataSource = jsonResponse.StringOf("data.source")
    dataStatus = jsonResponse.StringOf("data.status")
    dataStorage = jsonResponse.StringOf("data.storage")
    dataTake_over_date = jsonResponse.StringOf("data.take_over_date")
    dataType = jsonResponse.StringOf("data.type")
    dataUnsubscribe_all_date = jsonResponse.StringOf("data.unsubscribe_all_date")
    dataUnsubscribe_call_date = jsonResponse.StringOf("data.unsubscribe_call_date")
    dataUnsubscribe_email_date = jsonResponse.StringOf("data.unsubscribe_email_date")
    dataUnsubscribe_sms_date = jsonResponse.StringOf("data.unsubscribe_sms_date")
    dataWork_order = jsonResponse.StringOf("data.work_order")
    dataAccountId = jsonResponse.IntOf("data.account.id")
    dataAccountCreated_at = jsonResponse.StringOf("data.account.created_at")
    dataAccountUpdated_at = jsonResponse.StringOf("data.account.updated_at")
    dataAccountPartner_id = jsonResponse.IntOf("data.account.partner_id")
    dataAccountActivity_report = jsonResponse.BoolOf("data.account.activity_report")
    dataAccountCommercial = jsonResponse.BoolOf("data.account.commercial")
    dataAccountEvent = jsonResponse.BoolOf("data.account.event")
    dataAccountLeadxpress = jsonResponse.BoolOf("data.account.leadxpress")
    dataAccountLoyalty = jsonResponse.BoolOf("data.account.loyalty")
    dataAccountPhone_up = jsonResponse.BoolOf("data.account.phone_up")
    dataAccountRenewal = jsonResponse.BoolOf("data.account.renewal")
    dataAccountSale_table = jsonResponse.BoolOf("data.account.sale_table")
    dataAccountService = jsonResponse.BoolOf("data.account.service")
    dataAccountWalk_in = jsonResponse.BoolOf("data.account.walk_in")
    dataAccountWebboost = jsonResponse.BoolOf("data.account.webboost")
    dataAccountAccount_manager = jsonResponse.BoolOf("data.account.account_manager")
    dataAccountActivation_date = jsonResponse.StringOf("data.account.activation_date")
    dataAccountActive = jsonResponse.BoolOf("data.account.active")
    dataAccountAssigned_lead = jsonResponse.BoolOf("data.account.assigned_lead")
    dataAccountAuto_renewal = jsonResponse.BoolOf("data.account.auto_renewal")
    dataAccountAuto_renewal_new = jsonResponse.BoolOf("data.account.auto_renewal_new")
    dataAccountAuto_renewal_used = jsonResponse.BoolOf("data.account.auto_renewal_used")
    dataAccountAutomation = jsonResponse.BoolOf("data.account.automation")
    dataAccountBdc_advisor = jsonResponse.BoolOf("data.account.bdc_advisor")
    dataAccountCalendar_options = jsonResponse.BoolOf("data.account.calendar_options")
    dataAccountClient_card_fieldsProcessGas = jsonResponse.BoolOf("data.account.client_card_fields.process.gas")
    dataAccountClient_card_fieldsProcessRecorded = jsonResponse.BoolOf("data.account.client_card_fields.process.recorded")
    dataAccountClient_card_fieldsProcessAvailable = jsonResponse.BoolOf("data.account.client_card_fields.process.available")
    dataAccountClient_card_fieldsProcessDiscounted = jsonResponse.BoolOf("data.account.client_card_fields.process.discounted")
    dataAccountClient_card_fieldsCommercialProfit = jsonResponse.BoolOf("data.account.client_card_fields.commercial.profit")
    dataAccountClient_card_fieldsCommercialExclude = jsonResponse.BoolOf("data.account.client_card_fields.commercial.exclude")
    dataAccountClient_card_fieldsCommercialMeeting = jsonResponse.BoolOf("data.account.client_card_fields.commercial.meeting")
    dataAccountClient_card_fieldsPerformanceDeposit = jsonResponse.BoolOf("data.account.client_card_fields.performance.deposit")
    dataAccountClient_card_fieldsPerformanceRefinanced = jsonResponse.BoolOf("data.account.client_card_fields.performance.refinanced")
    dataAccountClient_card_fieldsPerformanceDealer_tour = jsonResponse.BoolOf("data.account.client_card_fields.performance.dealer_tour")
    dataAccountClient_card_fieldsPerformanceWalk_around = jsonResponse.BoolOf("data.account.client_card_fields.performance.walk_around")
    dataAccountClient_card_fieldsPerformanceQualification = jsonResponse.BoolOf("data.account.client_card_fields.performance.qualification")
    dataAccountClient_card_fieldsPerformanceTwenty_four_hour = jsonResponse.BoolOf("data.account.client_card_fields.performance.twenty_four_hour")
    dataAccountClient_card_fieldsGeneral_infoBudget = jsonResponse.BoolOf("data.account.client_card_fields.general_info.budget")
    dataAccountClient_card_fieldsGeneral_infoSector = jsonResponse.BoolOf("data.account.client_card_fields.general_info.sector")
    dataAccountClient_card_fieldsGeneral_infoCustom_1 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_1")
    dataAccountClient_card_fieldsGeneral_infoCustom_2 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_2")
    dataAccountClient_card_fieldsGeneral_infoCustom_3 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_3")
    dataAccountClient_card_fieldsGeneral_infoCustom_4 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_4")
    dataAccountClient_card_fieldsGeneral_infoCustom_5 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_5")
    dataAccountClient_card_fieldsGeneral_infoCustom_6 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_6")
    dataAccountClient_card_fieldsGeneral_infoCustom_7 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_7")
    dataAccountClient_card_fieldsGeneral_infoCustom_8 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_8")
    dataAccountClient_card_fieldsGeneral_infoCustom_9 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_9")
    dataAccountClient_card_fieldsGeneral_infoCustom_10 = jsonResponse.BoolOf("data.account.client_card_fields.general_info.custom_10")
    dataAccountClient_card_fieldsGeneral_infoCommunication_preference = jsonResponse.BoolOf("data.account.client_card_fields.general_info.communication_preference")
    dataAccountClient_card_fieldsWanted_vehicleVin = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.vin")
    dataAccountClient_card_fieldsWanted_vehicleFuel = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.fuel")
    dataAccountClient_card_fieldsWanted_vehicleRate = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.rate")
    dataAccountClient_card_fieldsWanted_vehicleTerm = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.term")
    dataAccountClient_card_fieldsWanted_vehicleTire = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.tire")
    dataAccountClient_card_fieldsWanted_vehicleYear = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.year")
    dataAccountClient_card_fieldsWanted_vehicleColor = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.color")
    dataAccountClient_card_fieldsWanted_vehiclePrice = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.price")
    dataAccountClient_card_fieldsWanted_vehicleStock = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.stock")
    dataAccountClient_card_fieldsWanted_vehicleTotal = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.total")
    dataAccountClient_card_fieldsWanted_vehicleBudget = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.budget")
    dataAccountClient_card_fieldsWanted_vehicleEngine = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.engine")
    dataAccountClient_card_fieldsWanted_vehicleLength = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.length")
    dataAccountClient_card_fieldsWanted_vehicleProfit = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.profit")
    dataAccountClient_card_fieldsWanted_vehicleSuffix = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.suffix")
    dataAccountClient_card_fieldsWanted_vehicleWeight = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.weight")
    dataAccountClient_card_fieldsWanted_vehicleComment = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.comment")
    dataAccountClient_card_fieldsWanted_vehicleMileage = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.mileage")
    dataAccountClient_card_fieldsWanted_vehiclePayment = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.payment")
    dataAccountClient_card_fieldsWanted_vehicleBodyType = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.bodyType")
    dataAccountClient_card_fieldsWanted_vehicleCategory = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.category")
    dataAccountClient_card_fieldsWanted_vehicleModality = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.modality")
    dataAccountClient_card_fieldsWanted_vehicleResidual = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.residual")
    dataAccountClient_card_fieldsWanted_vehicleSleeping = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.sleeping")
    dataAccountClient_card_fieldsWanted_vehicleWarranty = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.warranty")
    dataAccountClient_card_fieldsWanted_vehicleFrequency = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.frequency")
    dataAccountClient_card_fieldsWanted_vehicleAccessories = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.accessories")
    dataAccountClient_card_fieldsWanted_vehicleCategory_rv = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.category_rv")
    dataAccountClient_card_fieldsWanted_vehiclePreparation = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.preparation")
    dataAccountClient_card_fieldsWanted_vehicleInitial_cash = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.initial_cash")
    dataAccountClient_card_fieldsWanted_vehicleOffer_number = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.offer_number")
    dataAccountClient_card_fieldsWanted_vehicleOrder_number = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.order_number")
    dataAccountClient_card_fieldsWanted_vehicleTransmission = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.transmission")
    dataAccountClient_card_fieldsWanted_vehicleDocumentation = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.documentation")
    dataAccountClient_card_fieldsWanted_vehicleDrivingWheels = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.drivingWheels")
    dataAccountClient_card_fieldsWanted_vehicleColor_exterior = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.color_exterior")
    dataAccountClient_card_fieldsWanted_vehicleColor_interior = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.color_interior")
    dataAccountClient_card_fieldsWanted_vehicleAllowed_mileage = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.allowed_mileage")
    dataAccountClient_card_fieldsWanted_vehicleSecurity_deposit = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.security_deposit")
    dataAccountClient_card_fieldsWanted_vehicleEnd_contract_date = jsonResponse.BoolOf("data.account.client_card_fields.wanted_vehicle.end_contract_date")
    dataAccountClient_card_fieldsExchange_vehicleVin = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.vin")
    dataAccountClient_card_fieldsExchange_vehicleFuel = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.fuel")
    dataAccountClient_card_fieldsExchange_vehicleLink = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.link")
    dataAccountClient_card_fieldsExchange_vehicleRate = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.rate")
    dataAccountClient_card_fieldsExchange_vehicleTerm = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.term")
    dataAccountClient_card_fieldsExchange_vehicleYear = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.year")
    dataAccountClient_card_fieldsExchange_vehicleColor = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.color")
    dataAccountClient_card_fieldsExchange_vehiclePrice = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.price")
    dataAccountClient_card_fieldsExchange_vehicleStock = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.stock")
    dataAccountClient_card_fieldsExchange_vehicleValue = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.value")
    dataAccountClient_card_fieldsExchange_vehicleBudget = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.budget")
    dataAccountClient_card_fieldsExchange_vehicleEngine = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.engine")
    dataAccountClient_card_fieldsExchange_vehicleLength = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.length")
    dataAccountClient_card_fieldsExchange_vehicleProfit = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.profit")
    dataAccountClient_card_fieldsExchange_vehicleSuffix = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.suffix")
    dataAccountClient_card_fieldsExchange_vehicleWeight = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.weight")
    dataAccountClient_card_fieldsExchange_vehicleBalance = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.balance")
    dataAccountClient_card_fieldsExchange_vehicleComment = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.comment")
    dataAccountClient_card_fieldsExchange_vehicleMileage = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.mileage")
    dataAccountClient_card_fieldsExchange_vehiclePayment = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.payment")
    dataAccountClient_card_fieldsExchange_vehicleRenewal = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.renewal")
    dataAccountClient_card_fieldsExchange_vehicleSold_by = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.sold_by")
    dataAccountClient_card_fieldsExchange_vehicleBodyType = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.bodyType")
    dataAccountClient_card_fieldsExchange_vehicleCategory = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.category")
    dataAccountClient_card_fieldsExchange_vehicleModality = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.modality")
    dataAccountClient_card_fieldsExchange_vehicleResidual = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.residual")
    dataAccountClient_card_fieldsExchange_vehicleSleeping = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.sleeping")
    dataAccountClient_card_fieldsExchange_vehicleWarranty = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.warranty")
    dataAccountClient_card_fieldsExchange_vehicleCondition = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.condition")
    dataAccountClient_card_fieldsExchange_vehicleFrequency = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.frequency")
    dataAccountClient_card_fieldsExchange_vehicleIntention = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.intention")
    dataAccountClient_card_fieldsExchange_vehicleRefinance = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.refinance")
    dataAccountClient_card_fieldsExchange_vehicleRequested = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.requested")
    dataAccountClient_card_fieldsExchange_vehicleSold_date = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.sold_date")
    dataAccountClient_card_fieldsExchange_vehicleCategory_rv = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.category_rv")
    dataAccountClient_card_fieldsExchange_vehicleInstitution = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.institution")
    dataAccountClient_card_fieldsExchange_vehicleInitial_cash = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.initial_cash")
    dataAccountClient_card_fieldsExchange_vehicleOffer_number = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.offer_number")
    dataAccountClient_card_fieldsExchange_vehicleTransmission = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.transmission")
    dataAccountClient_card_fieldsExchange_vehicleDrivingWheels = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.drivingWheels")
    dataAccountClient_card_fieldsExchange_vehicleColor_exterior = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.color_exterior")
    dataAccountClient_card_fieldsExchange_vehicleColor_interior = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.color_interior")
    dataAccountClient_card_fieldsExchange_vehicleAllowed_mileage = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.allowed_mileage")
    dataAccountClient_card_fieldsExchange_vehicleSecurity_deposit = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.security_deposit")
    dataAccountClient_card_fieldsExchange_vehicleEnd_contract_date = jsonResponse.BoolOf("data.account.client_card_fields.exchange_vehicle.end_contract_date")
    dataAccountClient_number = jsonResponse.BoolOf("data.account.client_number")
    dataAccountConfirmation_appt = jsonResponse.BoolOf("data.account.confirmation_appt")
    dataAccountCredit = jsonResponse.BoolOf("data.account.credit")
    dataAccountCsi = jsonResponse.BoolOf("data.account.csi")
    dataAccountCsi_used = jsonResponse.BoolOf("data.account.csi_used")
    dataAccountDefault_deliveryman_user_id = jsonResponse.StringOf("data.account.default_deliveryman_user_id")
    dataAccountDelivered_by = jsonResponse.BoolOf("data.account.delivered_by")
    dataAccountDisable_communication_audio = jsonResponse.BoolOf("data.account.disable_communication_audio")
    dataAccountDuplicates = jsonResponse.BoolOf("data.account.duplicates")
    dataAccountGuest_action = jsonResponse.BoolOf("data.account.guest_action")
    dataAccountEmail_client = jsonResponse.BoolOf("data.account.email_client")
    dataAccountIn_turn = jsonResponse.BoolOf("data.account.in_turn")
    dataAccountIn_turn_director_management = jsonResponse.BoolOf("data.account.in_turn_director_management")
    dataAccountLeads_other_division = jsonResponse.BoolOf("data.account.leads_other_division")
    dataAccountLeadxpress_optionPriority = jsonResponse.IntOf("data.account.leadxpress_option.priority")
    dataAccountLeadxpress_optionReminderFrequency = jsonResponse.IntOf("data.account.leadxpress_option.reminder.frequency")
    dataAccountLeadxpress_optionReminderRecurrence = jsonResponse.IntOf("data.account.leadxpress_option.reminder.recurrence")
    dataAccountLeadxpress_optionScheduleAccount = jsonResponse.BoolOf("data.account.leadxpress_option.schedule.account")
    dataAccountLeadxpress_optionScheduleAdvisor = jsonResponse.BoolOf("data.account.leadxpress_option.schedule.advisor")
    dataAccountLimited_audio_access = jsonResponse.BoolOf("data.account.limited_audio_access")
    dataAccountLogo = jsonResponse.StringOf("data.account.logo")
    dataAccountLogo_en = jsonResponse.StringOf("data.account.logo_en")
    dataAccountMandatory_coordinate = jsonResponse.BoolOf("data.account.mandatory_coordinate")
    dataAccountManually_status = jsonResponse.BoolOf("data.account.manually_status")
    dataAccountMerge_rule = jsonResponse.StringOf("data.account.merge_rule")
    dataAccountMonth_start_day = jsonResponse.IntOf("data.account.month_start_day")
    dataAccountName = jsonResponse.StringOf("data.account.name")
    dataAccountNiotext = jsonResponse.BoolOf("data.account.niotext")
    dataAccountNiotext_phone = jsonResponse.BoolOf("data.account.niotext_phone")
    dataAccountPhone = jsonResponse.StringOf("data.account.phone")
    dataAccountPower_sport = jsonResponse.BoolOf("data.account.power_sport")
    dataAccountProcess = jsonResponse.BoolOf("data.account.process")
    dataAccountRecreative_special = jsonResponse.BoolOf("data.account.recreative_special")
    dataAccountResult_date_validation = jsonResponse.BoolOf("data.account.result_date_validation")
    dataAccountSale_accessories = jsonResponse.BoolOf("data.account.sale_accessories")
    dataAccountSale_by_phone = jsonResponse.BoolOf("data.account.sale_by_phone")
    dataAccountSale_date_month = jsonResponse.BoolOf("data.account.sale_date_month")
    dataAccountSale_table_optionsAccessory_column = jsonResponse.BoolOf("data.account.sale_table_options.accessory_column")
    dataAccountSale_table_optionsCommercial_column = jsonResponse.BoolOf("data.account.sale_table_options.commercial_column")
    dataAccountSale_table_optionsDivision_grouped_total_column = jsonResponse.BoolOf("data.account.sale_table_options.division_grouped_total_column")
    dataAccountSale_validation = jsonResponse.BoolOf("data.account.sale_validation")
    dataAccountScan = jsonResponse.BoolOf("data.account.scan")
    dataAccountStock_required_for_sale = jsonResponse.BoolOf("data.account.stock_required_for_sale")
    dataAccountTake_over_director = jsonResponse.BoolOf("data.account.take_over_director")
    dataAccountTrade_report = jsonResponse.BoolOf("data.account.trade_report")
    dataAccountUnrestricted_assignment = jsonResponse.BoolOf("data.account.unrestricted_assignment")
    dataAccountUnsubscribe = jsonResponse.BoolOf("data.account.unsubscribe")
    dataAccountUntreated_lead = jsonResponse.BoolOf("data.account.untreated_lead")
    dataAccountVehicle_model_text = jsonResponse.BoolOf("data.account.vehicle_model_text")
    dataAccountVehicle_text = jsonResponse.BoolOf("data.account.vehicle_text")
    dataAccountVerified_sale = jsonResponse.BoolOf("data.account.verified_sale")
    dataAccountVin_decoder = jsonResponse.BoolOf("data.account.vin_decoder")
    dataAccountWaiting_sale_date = jsonResponse.StringOf("data.account.waiting_sale_date")
    dataAccountWaiting_sale_option = jsonResponse.BoolOf("data.account.waiting_sale_option")
    dataAdvisor = jsonResponse.StringOf("data.advisor")
    dataBdc = jsonResponse.StringOf("data.bdc")
    dataCommercial = jsonResponse.StringOf("data.commercial")
    dataService_advisor = jsonResponse.StringOf("data.service_advisor")
    dataService_agent = jsonResponse.StringOf("data.service_agent")
    i = 0
    count_i = jsonResponse.SizeOfArray("data.emails")
    for i < count_i {
        jsonResponse.SetI(i)
        id = jsonResponse.IntOf("data.emails[i].id")
        created_at = jsonResponse.StringOf("data.emails[i].created_at")
        updated_at = jsonResponse.StringOf("data.emails[i].updated_at")
        lead_id = jsonResponse.IntOf("data.emails[i].lead_id")
        address = jsonResponse.StringOf("data.emails[i].address")
        v_type = jsonResponse.StringOf("data.emails[i].type")
        valid = jsonResponse.BoolOf("data.emails[i].valid")
        i = i + 1
    }

    i = 0
    count_i = jsonResponse.SizeOfArray("data.phones")
    for i < count_i {
        jsonResponse.SetI(i)
        id = jsonResponse.IntOf("data.phones[i].id")
        created_at = jsonResponse.StringOf("data.phones[i].created_at")
        updated_at = jsonResponse.StringOf("data.phones[i].updated_at")
        lead_id = jsonResponse.IntOf("data.phones[i].lead_id")
        extension = jsonResponse.StringOf("data.phones[i].extension")
        number = jsonResponse.StringOf("data.phones[i].number")
        v_type = jsonResponse.StringOf("data.phones[i].type")
        valid = jsonResponse.BoolOf("data.phones[i].valid")
        validated = jsonResponse.BoolOf("data.phones[i].validated")
        mobile = jsonResponse.BoolOf("data.phones[i].mobile")
        i = i + 1
    }

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

    i = 0
    count_i = jsonResponse.SizeOfArray("data.related_ids")
    for i < count_i {
        jsonResponse.SetI(i)
        i = i + 1
    }


    http.DisposeHttp()
    jsonRequestBody.DisposeJsonObject()
    jsonResponse.DisposeJsonObject()

 

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