This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class CustomDeserializer { | |
| public class ResponseWrapper { | |
| public Integer defaultValue; // Reserved keyword mapping | |
| // Add other properties here | |
| } | |
| public static ResponseWrapper deserializeResponse(String jsonString) { | |
| Map<String, Object> jsonMap = (Map<String, Object>) JSON.deserializeUntyped(jsonString); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Id businessRecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Business').getRecordTypeId(); | |
| Id partnerRecordTypeId = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Business').getRecordTypeId(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy on Push | |
| on: | |
| push: | |
| branches: | |
| - Dev | |
| jobs: | |
| test: | |