Loading
Seguro
Índice
Selecionar filtros

          Sem resultados
          Sem resultados
          Aqui estão algumas dicas de pesquisa

          Verifique a grafia das palavras-chave.
          Tente utilizar termos mais genéricos.
          Selecione menos filtros para ampliar sua pesquisa.

          Pesquisar em toda a Ajuda do Salesforce
          Criar classes personalizadas para a interface InsPolicy

          Criar classes personalizadas para a interface InsPolicy

          Se os Mapeadores de dados do OmniStudio e as classes personalizadas incluídas com o pacote Extensão de indústrias de seguro não funcionarem para suas necessidades de negócios, você poderá escrever suas próprias classes personalizadas para trabalhar com a interface InsPolicy para obter ou publicar dados no objeto de apólice do Salesforce FSC.

          Usando sua classe personalizada

          Para que nossos serviços de política funcionem com sua classe personalizada, a classe personalizada deve implementar a interface de vlocity_ins.VlocityOpenInterface2.

          Para que sua classe personalizada funcione com a opção getDataCustomClassName, a classe deve fazer o seguinte:

          1. Contém um método chamado getData, que a classe usa para recuperar seu modelo de dados.

            Você pode usar o campo Id no mapa de opções para localizar a Id da política de destino.

          2. Dentro do método getData, converta o modelo de dados em um objeto InsPolicy.
          3. Coloque o objeto InsPolicy criado no mapa de saída usando InsPolicy como chave.
          public Boolean invokeMethod(String methodName,
                                      Map<String, Object> inputs,
                                      Map<String, Object> output,
                                      Map<String, Object> options) {
              if (methodName == 'getData') {
                  return getData(inputs, output, options);
              }
              return false;
          }
          
          private Boolean getData(Map<String, Object> inputs,
                                  Map<String, Object> output,
                                  Map<String, Object> options) {
              // Retrieve FSC data model and populate it in the output map
              InsPolicy myPolicy = getPolicy(options.get(‘Id’));
              output.put('InsPolicy', myPolicy.toMap());
              return true;
          }

          Para que a classe funcione com as opções postDataCustomClassName e updateDataCustomClassName, ela deve conter um método chamado postData. Esse método é usado para converter o objeto InsPolicy em um modelo de dados concreto e inserir ou atualizar os registros de destino.

          O objeto InsPolicy pode ser recuperado usando o campo InsPolicy no mapa de entradas da seguinte maneira:

          public Boolean invokeMethod(String methodName,
                                      Map<String, Object> inputs,
                                      Map<String, Object> output,
                                      Map<String, Object> options) {
              if (methodName == 'postData') {
                  return postData(inputs, output, options);
              }
              return false;
          }
          
          private Boolean postData(Map<String, Object> inputs,
                                   Map<String, Object> output,
                                   Map<String, Object> options) {
              // Convert InsPolicy to InsurancePolicy and insert the record
              InsurancePolicy myPolicy = convertToInsurancePolicy(inputs.get('InsPolicy'));
              insert myPolicy;
              return true;
          }
          

          Estrutura JSON InsPolicy

          A interface InsPolicy divide-se em objetos JSON, começando com o JSON de política no nível raiz e, em seguida, os objetos filho, da seguinte maneira:

          {
              // Fields
              "accountId": [String],
              "additionalInfo": [Map],
              "attributeSelectedValues": [Map],
              "createdDate": [Datetime],
              "currencyCode": [String],
              "currencySymbol": [String],
              "effectiveDate": [Datetime],
              "endDate": [Datetime],
              "financialAccountId": [String],
              "Id": [String],
              "monthlyPremium": [Decimal],
              "name": [String],
              "originalEffectiveDate": [Datetime],
              "originalEndDate": [Datetime],
              "originalVersionId": [String],
              "policyNumber": [String],
              "previousVersionId": [String],
              "productCode": [String],
              "productId": [String],
              "standardPremium": [Decimal],
              "status": [String],
              "term": [String],
              "totalAmount": [Decimal],
              "totalAmountForTerm": [Decimal],
              "totalFeeAmount": [Decimal],
              "totalFeeForTerm": [Decimal],
              "totalFeeForVersions": [Decimal],
              "totalPremiumForTerm": [Decimal],
              "totalPremiumForVersions": [Decimal],
              "totalSumInsured": [Decimal],
              "totalTaxAmount": [Decimal],
              "totalTaxFeeAmount": [Decimal],
              "totalTaxForTerm": [Decimal],
              "totalTaxForVersions": [Decimal],
          
              // Child Objects
              "coverages": [List<Coverage>],
              "insuredItems": [List<InsuredItem>],
              "insuredParties": [List<InsuredParty>],
              "pricingAdjustments": [List<PricingAdjustment>],
              "transactions": [List<Transaction>],
              "revenueSchedule": [List<Revenue>]
          }
          
          Coverage
          {
              // Fields
              "additionalInfo": [Map],
              "attributeSelectedValues": [Map],
              "currencyCode": [String],
              "currencySymbol": [String],
              "effectiveDate": [Datetime],
              "endDate": [Datetime],
              "feeAmount": [Decimal],
              "Id": [String],
              "name": [String],
              "premium": [Decimal],
              "productChildItemId": [String],
              "productSpecCode": [String],
              "productSpecId": [String],
              "proratedFeeAmount": [Decimal],
              "proratedPremium": [Decimal],
              "proratedTaxAmount": [Decimal],
              "taxAmount": [Decimal],
              "totalAmount": [Decimal],
              "totalProratedAmount": [Decimal],
              "totalTaxFeeAmount": [Decimal],
          
              // Child Objects
              "pricingAdjustments": [List<PricingAdjustment>]
          }
          
          InsuredItem
          {
              // Fields
              "additionalInfo": [Map],
              "attributeSelectedValues": [Map],
              "currencyCode": [String],
              "currencySymbol": [String],
              "feeAmount": [Decimal],
              "Id": [String],
              "instanceKey": [String],
              "lastModifiedDate": [Datetime],
              "name": [String],
              "premium": [Decimal],
              "productChildItemId": [String],
              "productSpecCode": [String],
              "productSpecId": [String],
              "proratedFeeAmount": [Decimal],
              "proratedPremium": [Decimal],
              "proratedTaxAmount": [Decimal],
              "taxAmount": [Decimal],
              "totalAmount": [Decimal],
              "totalProratedAmount": [Decimal],
              "totalSumInsured": [Decimal],
              "totalTaxFeeAmount": [Decimal],
          
              // Child Objects
              "childInsuredItems": [List<InsuredItem>],
              "coverages": [List<Coverage>]
              "insuredRels": [List<InsuredRelationship>],
              "pricingAdjustments": [List<PricingAdjustment>],
              "primaryInsuredParty": [InsuredParty]
          }
          
          InsuredParty
          {
              // Fields
              "additionalInfo": [Map],
              "attributeSelectedValues": [Map],
              "currencyCode": [String],
              "currencySymbol": [String],
              "feeAmount": [Decimal],
              "Id": [String],
              "instanceKey": [String],
              "lastModifiedDate": [Datetime],
              "name": [String],
              "partyId": [String],
              "premium": [Decimal],
              "productChildItemId": [String],
              "productSpecCode": [String],
              "productSpecId": [String],
              "proratedFeeAmount": [Decimal],
              "proratedPremium": [Decimal],
              "proratedTaxAmount": [Decimal],
              "taxAmount": [Decimal],
              "totalAmount": [Decimal],
              "totalProratedAmount": [Decimal],
              "totalSumInsured": [Decimal],
              "totalTaxFeeAmount": [Decimal],
          
              // Child Objects
              "coverages": [List<Coverage>],
              "pricingAdjustments": [List<PricingAdjustment>]
          }
          
          InsuredRelationship
          {
              // Fields
              "additionalInfo": [Map],
              "attributeSelectedValues": [Map],
              "childAttributeSelectedValues": [Map],
              "childId": [String],
              "childInstanceKey": [String],
              "childProductCode": [String],
              "parentId": [String],
              "parentInstanceKey": [String]
          }
          
          PricingAdjustment
          {
              // Fields
              "adjustmentType": [String],
              "amount": [Decimal],
              "applicableItemType": [String],
              "Id": [String],
              "isRefundable": [Boolean],
              "priceListEntryId": [String],
              "priceListEntryName": [String],
              "transactionId": [String]
          }
          
          Transaction
          {
              // Fields
              "additionalInfo": [Map],
              "amount": [Decimal],
              "feeAmount": [Decimal],
              "Id": [String],
              "name": [String],
              "postDate": [Datetime],
              "taxAmount": [Decimal],
              "totalAmount": [Decimal],
              "transactionDate": [Datetime],
              "transactionNumber": [String],
              "type": [String]
          }
          
          Revenue
          {
              // Fields
              "amount": [Decimal],
              "Id": [String],
              "revenueDate": [Date],
              "toDelete": [Boolean]
              "totalEarnedRevenue": [Decimal],
              "totalUnearnedRevenue": [Decimal]
          }

          Exemplo de JSON InsPolicy

          Abaixo está um exemplo de JSON InsPolicy obtido de uma política automática. Alguns pontos:

          • Embora não seja mostrado neste JSON, um objeto insuredParties pode ter coberturas filhas.

          • Você pode usar o mapa de additionalInfo para recuperar e inserir campos personalizados não listados na carga útil JSON.

            Ao escrever um mapeador de dados de get ou uma classe personalizada, você pode colocar campos personalizados no mapa de additionalInfo.

            Quando você escreve um mapeador de dados de post ou update ou classe personalizada, pode recuperar campos personalizados por meio do mapa de additionalInfo.

          {
            "transactions": [
              {
                "type": "Sold Policy",
                "transactionNumber": null,
                "transactionDate": "2019-12-01T08:00:00.000Z",
                "totalAmount": 1091.6,
                "taxAmount": 251.6,
                "postDate": "2019-12-01T08:00:00.000Z",
                "name": "Sold Policy",
                "Id": "a5pB00000004Q8UIAU",
                "feeAmount": 100,
                "amount": 740,
                "additionalInfo": null
              }
            ],
            "totalTaxForVersions": 0,
            "totalTaxForTerm": 251.6,
            "totalTaxFeeAmount": 351.6,
            "totalTaxAmount": 251.6,
            "totalSumInsured": null,
            "totalPremiumForVersions": 0,
            "totalPremiumForTerm": 740,
            "totalFeeForVersions": 0,
            "totalFeeForTerm": 100,
            "totalFeeAmount": 100,
            "totalAmountForTerm": 1091.6,
            "totalAmount": 1091.6,
            "term": "Semi-Annual",
            "status": "Initial",
            "standardPremium": 740,
            "revenueSchedule": [
              {
                "totalUnearnedRevenue": 614.64,
                "totalEarnedRevenue": 125.36,
                "toDelete": null,
                "revenueDate": "2019-12-31",
                "insTransaction": null,
                "Id": "a5oB00000004IdRIAU",
                "amount": 125.36
              },
              {
                "totalUnearnedRevenue": 489.28,
                "totalEarnedRevenue": 250.72,
                "toDelete": null,
                "revenueDate": "2020-01-31",
                "insTransaction": null,
                "Id": "a5oB00000004IdSIAU",
                "amount": 125.36
              },
              {
                "totalUnearnedRevenue": 372.01,
                "totalEarnedRevenue": 367.99,
                "toDelete": null,
                "revenueDate": "2020-02-29",
                "insTransaction": null,
                "Id": "a5oB00000004IdTIAU",
                "amount": 117.27
              },
              {
                "totalUnearnedRevenue": 246.65,
                "totalEarnedRevenue": 493.35,
                "toDelete": null,
                "revenueDate": "2020-03-31",
                "insTransaction": null,
                "Id": "a5oB00000004IdUIAU",
                "amount": 125.36
              },
              {
                "totalUnearnedRevenue": 125.34,
                "totalEarnedRevenue": 614.66,
                "toDelete": null,
                "revenueDate": "2020-04-30",
                "insTransaction": null,
                "Id": "a5oB00000004IdVIAU",
                "amount": 121.31
              },
              {
                "totalUnearnedRevenue": 0,
                "totalEarnedRevenue": 740,
                "toDelete": null,
                "revenueDate": "2020-05-31",
                "insTransaction": null,
                "Id": "a5oB00000004IdWIAU",
                "amount": 125.34
              }
            ],
            "productId": "01tB0000000VP2TIAW",
            "productCode": "AUTOROOT",
            "pricingAdjustments": [
              {
                "transactionId": null,
                "priceListEntryName": "Auto Root Test Fee",
                "priceListEntryId": "a2tB0000000LyJPIA0",
                "isRefundable": false,
                "Id": "a5nB00000004j7vIAA",
                "applicableItemType": null,
                "amount": 20,
                "adjustmentType": "Fee"
              },
              {
                "transactionId": null,
                "priceListEntryName": "Auto Root Test Tax",
                "priceListEntryId": "a2tB0000000LyJKIA0",
                "isRefundable": true,
                "Id": "a5nB00000004j7wIAA",
                "applicableItemType": null,
                "amount": 125.8,
                "adjustmentType": "Tax"
              }
            ],
            "previousVersionId": null,
            "policyNumber": "5df21f6f-62d6-2c63-6a1a-c67e2bdd6fec",
            "originalVersionId": "0YTB0000000TRFcOAO",
            "originalEndDate": null,
            "originalEffectiveDate": null,
            "name": "Auto Root",
            "monthlyPremium": 123.33333333333333,
            "insuredParties": [
              {
                "totalTaxFeeAmount": 0,
                "totalSumInsured": null,
                "totalProratedAmount": 0,
                "totalAmount": 0,
                "taxAmount": null,
                "proratedTaxAmount": null,
                "proratedPremium": null,
                "proratedFeeAmount": null,
                "productSpecId": "01tB0000000VP2PIAW",
                "productSpecCode": "DRIVER",
                "productChildItemId": null,
                "pricingAdjustments": null,
                "premium": null,
                "partyId": null,
                "name": "Joan Smith",
                "lastModifiedDate": "2019-12-18T03:08:23.000Z",
                "instanceKey": "Joan Smith",
                "Id": "0aoB0000000TdKwIAK",
                "feeAmount": null,
                "currencySymbol": null,
                "currencyCode": null,
                "coverages": null,
                "attributeSelectedValues": {
                  "AGE": 20,
                  "FN": "Joan",
                  "GENDER": "Female",
                  "LN": "Smith",
                  "isPrimary": false
                },
                "additionalInfo": {}
              },
              {
                "totalTaxFeeAmount": 0,
                "totalSumInsured": null,
                "totalProratedAmount": 0,
                "totalAmount": 0,
                "taxAmount": null,
                "proratedTaxAmount": null,
                "proratedPremium": null,
                "proratedFeeAmount": null,
                "productSpecId": "01tB0000000VP2PIAW",
                "productSpecCode": "DRIVER",
                "productChildItemId": null,
                "pricingAdjustments": null,
                "premium": null,
                "partyId": null,
                "name": "John Smith",
                "lastModifiedDate": "2019-12-18T03:08:23.000Z",
                "instanceKey": "John Smith",
                "Id": "0aoB0000000TdKxIAK",
                "feeAmount": null,
                "currencySymbol": null,
                "currencyCode": null,
                "coverages": null,
                "attributeSelectedValues": {
                  "AGE": 30,
                  "FN": "John",
                  "GENDER": "Male",
                  "LN": "Smith",
                  "isPrimary": false
                },
                "additionalInfo": {}
              }
            ],
            "insuredItems": [
              {
                "totalTaxFeeAmount": 102.9,
                "totalSumInsured": null,
                "totalProratedAmount": 0,
                "totalAmount": 472.9,
                "taxAmount": 62.9,
                "proratedTaxAmount": null,
                "proratedPremium": null,
                "proratedFeeAmount": null,
                "productSpecId": "01tB0000000VP2OIAW",
                "productSpecCode": "AUTO",
                "productChildItemId": "a32B00000009ktaIAA",
                "primaryInsuredParty": {
                  "totalTaxFeeAmount": null,
                  "totalSumInsured": null,
                  "totalProratedAmount": null,
                  "totalAmount": null,
                  "taxAmount": null,
                  "proratedTaxAmount": null,
                  "proratedPremium": null,
                  "proratedFeeAmount": null,
                  "productSpecId": null,
                  "productSpecCode": null,
                  "productChildItemId": null,
                  "pricingAdjustments": null,
                  "premium": null,
                  "partyId": null,
                  "name": null,
                  "lastModifiedDate": null,
                  "instanceKey": null,
                  "Id": "0aoB0000000TdKwIAK",
                  "feeAmount": null,
                  "currencySymbol": null,
                  "currencyCode": null,
                  "coverages": null,
                  "attributeSelectedValues": {},
                  "additionalInfo": {}
                },
                "pricingAdjustments": [
                  {
                    "transactionId": null,
                    "priceListEntryName": "Auto Test Tax",
                    "priceListEntryId": "a2tB0000000LyJAIA0",
                    "isRefundable": true,
                    "Id": "a5nB00000004j7xIAA",
                    "applicableItemType": "Insurance Policy Asset",
                    "amount": 62.9,
                    "adjustmentType": "Tax"
                  },
                  {
                    "transactionId": null,
                    "priceListEntryName": "Auto Test Fee",
                    "priceListEntryId": "a2tB0000000LyJFIA0",
                    "isRefundable": false,
                    "Id": "a5nB00000004j7yIAA",
                    "applicableItemType": "Insurance Policy Asset",
                    "amount": 20,
                    "adjustmentType": "Fee"
                  }
                ],
                "premium": 370,
                "name": "2015 Lexus LX250",
                "lastModifiedDate": "2019-12-18T03:08:24.000Z",
                "insuredRels": [
                  {
                    "parentInstanceKey": "2015 Lexus LX250",
                    "parentId": null,
                    "childProductCode": "DRIVER",
                    "childInstanceKey": "Joan Smith",
                    "childId": "0aoB0000000TdKwIAK",
                    "childAttributeSelectedValues": {
                      "AGE": 20,
                      "FN": "Joan",
                      "GENDER": "Female",
                      "LN": "Smith",
                      "isPrimary": false
                    },
                    "attributeSelectedValues": {
                      "AGE": 20,
                      "LN": "Smith",
                      "GENDER": "Female",
                      "FN": "Joan"
                    },
                    "additionalInfo": {}
                  }
                ],
                "instanceKey": "2015 Lexus LX250",
                "Id": "0YWB0000000TTiiOAG",
                "feeAmount": 40,
                "currencySymbol": null,
                "currencyCode": null,
                "coverages": [
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 1000,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2KIAW",
                    "productSpecCode": "LIABILITY_COVERAGE",
                    "productChildItemId": "a32B00000009ktfIAA",
                    "pricingAdjustments": null,
                    "premium": 1000,
                    "name": "Liability (BI/PD)",
                    "Id": "0cYB0000000L6idMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "LIABILITY": "$100k/$300k/$100k"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 500,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2JIAW",
                    "productSpecCode": "COMP_COVERAGE",
                    "productChildItemId": "a32B00000009ktcIAA",
                    "pricingAdjustments": null,
                    "premium": 500,
                    "name": "Comprehensive",
                    "Id": "0cYB0000000L6ieMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "COMPREHENSIVE": "500"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 0,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2HIAW",
                    "productSpecCode": "COL_WAIVER",
                    "productChildItemId": "a32B00000009ktdIAA",
                    "pricingAdjustments": null,
                    "premium": 0,
                    "name": "Collision Deductible Waiver",
                    "Id": "0cYB0000000L6ifMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "DED_WAIVER": "No coverage"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 20,
                    "totalProratedAmount": 0,
                    "totalAmount": 520,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2IIAW",
                    "productSpecCode": "COL_COVERAGE",
                    "productChildItemId": "a32B00000009ktbIAA",
                    "pricingAdjustments": [
                      {
                        "transactionId": null,
                        "priceListEntryName": "Collision Test Fee",
                        "priceListEntryId": "a2tB0000000LyJUIA0",
                        "isRefundable": false,
                        "Id": "a5nB00000004j81IAA",
                        "applicableItemType": "Insurance Policy Coverage",
                        "amount": 20,
                        "adjustmentType": "Fee"
                      }
                    ],
                    "premium": 500,
                    "name": "Collision",
                    "Id": "0cYB0000000L6igMAC",
                    "feeAmount": 20,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "COLLISION": "500"
                    },
                    "additionalInfo": {}
                  }
                ],
                "childInsuredItems": null,
                "attributeSelectedValues": {
                  "BodyClass": "Sedan/Saloon",
                  "VehicleType": "PASSENGER CAR",
                  "autoLicNum": "Lexus",
                  "isPrimary": true,
                  "autoYear": 2015,
                  "autoModel": "LX250",
                  "est_annual_mileage": "1-10000"
                },
                "additionalInfo": {}
              },
              {
                "totalTaxFeeAmount": 102.9,
                "totalSumInsured": null,
                "totalProratedAmount": 0,
                "totalAmount": 472.9,
                "taxAmount": 62.9,
                "proratedTaxAmount": null,
                "proratedPremium": null,
                "proratedFeeAmount": null,
                "productSpecId": "01tB0000000VP2OIAW",
                "productSpecCode": "AUTO",
                "productChildItemId": "a32B00000009ktaIAA",
                "primaryInsuredParty": {
                  "totalTaxFeeAmount": null,
                  "totalSumInsured": null,
                  "totalProratedAmount": null,
                  "totalAmount": null,
                  "taxAmount": null,
                  "proratedTaxAmount": null,
                  "proratedPremium": null,
                  "proratedFeeAmount": null,
                  "productSpecId": null,
                  "productSpecCode": null,
                  "productChildItemId": null,
                  "pricingAdjustments": null,
                  "premium": null,
                  "partyId": null,
                  "name": null,
                  "lastModifiedDate": null,
                  "instanceKey": null,
                  "Id": "0aoB0000000TdKxIAK",
                  "feeAmount": null,
                  "currencySymbol": null,
                  "currencyCode": null,
                  "coverages": null,
                  "attributeSelectedValues": {},
                  "additionalInfo": {}
                },
                "pricingAdjustments": [
                  {
                    "transactionId": null,
                    "priceListEntryName": "Auto Test Tax",
                    "priceListEntryId": "a2tB0000000LyJAIA0",
                    "isRefundable": true,
                    "Id": "a5nB00000004j7zIAA",
                    "applicableItemType": "Insurance Policy Asset",
                    "amount": 62.9,
                    "adjustmentType": "Tax"
                  },
                  {
                    "transactionId": null,
                    "priceListEntryName": "Auto Test Fee",
                    "priceListEntryId": "a2tB0000000LyJFIA0",
                    "isRefundable": false,
                    "Id": "a5nB00000004j80IAA",
                    "applicableItemType": "Insurance Policy Asset",
                    "amount": 20,
                    "adjustmentType": "Fee"
                  }
                ],
                "premium": 370,
                "name": "2006 Honda Odyssey",
                "lastModifiedDate": "2019-12-18T03:08:24.000Z",
                "insuredRels": [
                  {
                    "parentInstanceKey": "2006 Honda Odyssey",
                    "parentId": null,
                    "childProductCode": "DRIVER",
                    "childInstanceKey": "John Smith",
                    "childId": "0aoB0000000TdKxIAK",
                    "childAttributeSelectedValues": {
                      "AGE": 30,
                      "FN": "John",
                      "GENDER": "Male",
                      "LN": "Smith",
                      "isPrimary": false
                    },
                    "attributeSelectedValues": {
                      "AGE": 30,
                      "LN": "Smith",
                      "GENDER": "Male",
                      "FN": "John"
                    },
                    "additionalInfo": {}
                  }
                ],
                "instanceKey": "2006 Honda Odyssey",
                "Id": "0YWB0000000TTijOAG",
                "feeAmount": 40,
                "currencySymbol": null,
                "currencyCode": null,
                "coverages": [
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 1000,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2KIAW",
                    "productSpecCode": "LIABILITY_COVERAGE",
                    "productChildItemId": "a32B00000009ktfIAA",
                    "pricingAdjustments": null,
                    "premium": 1000,
                    "name": "Liability (BI/PD)",
                    "Id": "0cYB0000000L6ihMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "LIABILITY": "$100k/$300k/$100k"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 500,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2JIAW",
                    "productSpecCode": "COMP_COVERAGE",
                    "productChildItemId": "a32B00000009ktcIAA",
                    "pricingAdjustments": null,
                    "premium": 500,
                    "name": "Comprehensive",
                    "Id": "0cYB0000000L6iiMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "COMPREHENSIVE": "500"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 0,
                    "totalProratedAmount": 0,
                    "totalAmount": 0,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2HIAW",
                    "productSpecCode": "COL_WAIVER",
                    "productChildItemId": "a32B00000009ktdIAA",
                    "pricingAdjustments": null,
                    "premium": 0,
                    "name": "Collision Deductible Waiver",
                    "Id": "0cYB0000000L6ijMAC",
                    "feeAmount": null,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "DED_WAIVER": "No coverage"
                    },
                    "additionalInfo": {}
                  },
                  {
                    "totalTaxFeeAmount": 20,
                    "totalProratedAmount": 0,
                    "totalAmount": 520,
                    "taxAmount": null,
                    "proratedTaxAmount": null,
                    "proratedPremium": null,
                    "proratedFeeAmount": null,
                    "productSpecId": "01tB0000000VP2IIAW",
                    "productSpecCode": "COL_COVERAGE",
                    "productChildItemId": "a32B00000009ktbIAA",
                    "pricingAdjustments": [
                      {
                        "transactionId": null,
                        "priceListEntryName": "Collision Test Fee",
                        "priceListEntryId": "a2tB0000000LyJUIA0",
                        "isRefundable": false,
                        "Id": "a5nB00000004j82IAA",
                        "applicableItemType": "Insurance Policy Coverage",
                        "amount": 20,
                        "adjustmentType": "Fee"
                      }
                    ],
                    "premium": 500,
                    "name": "Collision",
                    "Id": "0cYB0000000L6ikMAC",
                    "feeAmount": 20,
                    "endDate": null,
                    "effectiveDate": null,
                    "currencySymbol": null,
                    "currencyCode": null,
                    "attributeSelectedValues": {
                      "COLLISION": "500"
                    },
                    "additionalInfo": {}
                  }
                ],
                "childInsuredItems": null,
                "attributeSelectedValues": {
                  "BodyClass": "Minivan",
                  "VehicleType": "MULTIPURPOSE PASSENGER VEHICLE (MPV)",
                  "autoLicNum": "Honda",
                  "isPrimary": true,
                  "autoYear": 2006,
                  "autoModel": "Odyssey",
                  "est_annual_mileage": "1-10000"
                },
                "additionalInfo": {}
              }
            ],
            "Id": "0YTB0000000TRFcOAO",
            "financialAccountId": null,
            "endDate": "2020-05-31T07:00:00.000Z",
            "effectiveDate": "2019-12-01T08:00:00.000Z",
            "currencySymbol": null,
            "currencyCode": null,
            "createdDate": "2019-12-18T03:08:19.000Z",
            "coverages": [
              {
                "totalTaxFeeAmount": 0,
                "totalProratedAmount": 0,
                "totalAmount": 0,
                "taxAmount": null,
                "proratedTaxAmount": null,
                "proratedPremium": null,
                "proratedFeeAmount": null,
                "productSpecId": "01tB0000000VP2LIAW",
                "productSpecCode": "UNINSURED_COVERAGE",
                "productChildItemId": "a32B00000009ktXIAQ",
                "pricingAdjustments": null,
                "premium": 0,
                "name": "Uninsured/Underinsured Motorist BI",
                "Id": "0cYB0000000L6icMAC",
                "feeAmount": null,
                "endDate": "2020-06-01T06:59:59.000Z",
                "effectiveDate": "2019-12-01T08:00:00.000Z",
                "currencySymbol": null,
                "currencyCode": null,
                "attributeSelectedValues": {
                  "UNINSURED": "$100k/$300k"
                },
                "additionalInfo": {}
              }
            ],
            "attributeSelectedValues": {},
            "additionalInfo": {},
            "accountId": "001B0000015bAwCIAU"
          }
           
          Carregando
          Salesforce Help | Article