TypeScript SDK Samples - Currencies Operations

Get Currencies
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Get Currencies
     * This method is used to get all the available currencies in your organization.
     */
    public static async getCurrencies(){

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Call getCurrencies method
        let response: APIResponse<ResponseHandler> = await currenciesOperations.getCurrencies();

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            if([204, 304].includes(response.getStatusCode())){
                console.log(response.getStatusCode() == 204? "No Content" : "Not Modified");

                return;
            }

            //Get object from response
            let responseObject: ResponseHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected ResponseWrapper instance is received
                if(responseObject instanceof ResponseWrapper){

                    //Get the array of obtained Currency instances
                    let currencies: Currency[] = responseObject.getCurrencies();

                    currencies.forEach(currency => {

                        //Get the Id of each currency
                        console.log("Currency Id: " + currency.getId());

                        //Get the IsoCode of each currency
                        console.log("Currency IsoCode: " + currency.getIsoCode());

                        //Get the Symbol of each currency
                        console.log("Currency Symbol: " + currency.getSymbol());

                        //Get the CreatedTime of each currency
                        console.log("Currency CreatedTime: " + currency.getCreatedTime());

                        //Get if the currency is active
                        console.log("Currency IsActive: " + currency.getIsActive().toString());

                        //Get the ExchangeRate of each currency
                        console.log("Currency ExchangeRate: " + currency.getExchangeRate());

                        //Get the format instance of each currency
                        let format: Format = currency.getFormat();

                        if(format !== null){

                            //Get the DecimalSeparator of the Format
                            console.log("Currency Format DecimalSeparator: " + format.getDecimalSeparator().getValue());

                            //Get the ThousandSeparator of the Format
                            console.log("Currency Format ThousandSeparator: " + format.getThousandSeparator().getValue());

                            //Get the DecimalPlaces of the Format
                            console.log("Currency Format DecimalPlaces: " + format.getDecimalPlaces().getValue());
                        }

                        //Get the createdBy User instance of each currency
                        let createdBy: User = currency.getCreatedBy();

                        //Check if createdBy is not null
                        if(createdBy !== null){

                            //Get the Name of the createdBy User
                            console.log("Currency CreatedBy User-Name: " + createdBy.getName());

                            //Get the ID of the createdBy User
                            console.log("Currency CreatedBy User-ID: " + createdBy.getId());
                        }

                        //Get the PrefixSymbol of each currency
                        console.log("Currency PrefixSymbol: " + currency.getPrefixSymbol().toString());

                        //Get the IsBase of each currency
                        console.log("Currency IsBase: " + currency.getIsBase().toString());

                        //Get the ModifiedTime of each currency
                        console.log("Currency ModifiedTime: " + currency.getModifiedTime());

                        //Get the Name of each currency
                        console.log("Currency Name: " + currency.getName());

                        //Get the modifiedBy User instance of each currency
                        let modifiedBy: User = currency.getModifiedBy();

                        //Check if modifiedBy is not null
                        if(modifiedBy !== null){

                            //Get the Name of the modifiedBy User
                            console.log("Currency ModifiedBy User-Name: " + modifiedBy.getName());

                            //Get the ID of the modifiedBy User
                            console.log("Currency ModifiedBy User-ID: " + modifiedBy.getId());
                        }
                    });
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Add Currencies
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * <h3> Add Currencies </h3>
     * This method is used to add new currencies to your organization.
     */
    public static async addCurrencies(){

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Get instance of BodyWrapper Class that will contain the request body
        let request: BodyWrapper = new BodyWrapper();

        //Array to hold Currency instances
        let currencies: Currency[] = [];

        //Get instance of Currency Class
        let currency: Currency = new Currency();

        //To set the position of the ISO code in the currency.
        //true: Display ISO code before the currency value.
        //false: Display ISO code after the currency value.
        currency.setPrefixSymbol(true);

        //To set the name of the currency.
        currency.setName("Angolan Kwanza - AOA");

        //To set the ISO code of the currency.
        currency.setIsoCode("AOA");

        //To set the symbol of the currency.
        currency.setSymbol("Kz");

        //To set the rate at which the currency has to be exchanged for home currency.
        currency.setExchangeRate("20.0000");

        //To set the status of the currency.
        //true: The currency is active.
        //false: The currency is inactive.
        currency.setIsActive(true);

        let format: Format = new Format();

        //It can be a Period or Comma, depending on the currency.
        format.setDecimalSeparator(new Choice("Period"));

        //It can be a Period, Comma, or Space, depending on the currency.
        format.setThousandSeparator(new Choice("Comma"));

        //To set the number of decimal places allowed for the currency. It can be 0, 2, or 3.
        format.setDecimalPlaces(new Choice("2"));

        //To set the format of the currency
        currency.setFormat(format);

        currencies.push(currency);

        //Set the array to Currency in BodyWrapper instance
        request.setCurrencies(currencies);

        //Call addCurrencies method that takes BodyWrapper instance as parameter
        let response: APIResponse<ActionHandler> = await currenciesOperations.addCurrencies(request);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            //Get object from response
            let responseObject: ActionHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected ActionWrapper instance is received
                if(responseObject instanceof ActionWrapper){

                    //Get the array of obtained ActionResponse instances
                    let actionResponses: ActionResponse[] = responseObject.getCurrencies();

                    actionResponses.forEach(actionResponse => {

                        //Check if the request is successful
                        if(actionResponse instanceof SuccessResponse){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                        //Check if the request returned an exception
                        else if(actionResponse instanceof APIException){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            //Get the Message
                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                    });
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Update Currencies
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Update Currencies
     * This method is used to update currency details.
     */
    public static async updateCurrencies(){

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Get instance of BodyWrapper Class that will contain the request body
        let request: BodyWrapper = new BodyWrapper();

        //Array to hold Currency instances
        let currencies: Currency[] = [];

        //Get instance of Currency Class
        let currency: Currency = new Currency();

        //To set currency Id
        currency.setId(BigInt("34770616040001"));

        //To set the position of the ISO code in the currency.
        //true: Display ISO code before the currency value.
        //false: Display ISO code after the currency value.
        currency.setPrefixSymbol(true);

        //To set the rate at which the currency has to be exchanged for home currency.
        currency.setExchangeRate("10.0000");

        //To set the status of the currency.
        //true: The currency is active.
        //false: The currency is inactive.
        currency.setIsActive(true);

        let format: Format = new Format();

        //It can be a Period or Comma, depending on the currency.
        // format.setDecimalSeparator(new Choice("Period"));

        // //It can be a Period, Comma, or Space, depending on the currency.
        // format.setThousandSeparator(new Choice("Space"));

        //To set the number of decimal places allowed for the currency. It can be 0, 2, or 3.
        format.setDecimalPlaces(new Choice("2"));

        //To set the format of the currency
        currency.setFormat(format);

        //Add Currency instance to the array
        currencies.push(currency);

        //Set the array to Currency in BodyWrapper instance
        request.setCurrencies(currencies);

        //Call updateCurrencies method that takes BodyWrapper instance as parameter
        let response: APIResponse<ActionHandler> = await currenciesOperations.updateCurrencies(request);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            //Get object from response
            let responseObject: ActionHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected ActionWrapper instance is received
                if(responseObject instanceof ActionWrapper){

                    //Get the array of obtained ActionResponse instances
                    let actionResponses: ActionResponse[] = responseObject.getCurrencies();

                    actionResponses.forEach(actionResponse => {

                        //Check if the request is successful
                        if(actionResponse instanceof SuccessResponse){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                        //Check if the request returned an exception
                        else if(actionResponse instanceof APIException){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            //Get the Message
                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                    });
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Enable Multiple Currencies
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Enable Multiple Currencies
     * This method is used to enable multiple currencies for your organization.
     */
    public static async enableMultipleCurrencies(){

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Get instance of BaseCurrencyWrapper Class that will contain the request body
        let request: BaseCurrencyWrapper = new BaseCurrencyWrapper();

        //Get instance of Currency Class
        let currency: Currency = new Currency();

        //To set the position of the ISO code in the base currency.
        //true: Display ISO code before the currency value.
        //false: Display ISO code after the currency value.
        currency.setPrefixSymbol(true);

        //To set the name of the base currency.
        currency.setName("Algerian Dinar-ADN");

        //To set the ISO code of the base currency.
        currency.setIsoCode("DZD");

        //To set the symbol of the base currency.
        currency.setSymbol("Af");

        //To set the rate at which the currency has to be exchanged for home base currency.
        currency.setExchangeRate("1.00");

        //To set the status of the base currency.
        //true: The currency is active.
        //false: The currency is inactive.
        currency.setIsActive(true);

        let format: Format = new Format();

        //It can be a Period or Comma, depending on the base currency.
        format.setDecimalSeparator(new Choice("Period"));

        //It can be a Period, Comma, or Space, depending on the base currency.
        format.setThousandSeparator(new Choice("Comma"));

        //To set the number of decimal places allowed for the base currency. It can be 0, 2, or 3.
        format.setDecimalPlaces(new Choice("2"));

        //To set the format of the base currency
        currency.setFormat(format);

        //Set the Currency in BodyWrapper instance
        request.setBaseCurrency(currency);

        //Call enableMultipleCurrencies method that takes BodyWrapper instance as parameter
        let response: APIResponse<BaseCurrencyActionHandler> = await currenciesOperations.enableMultipleCurrencies(request);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            //Get object from response
            let responseObject: BaseCurrencyActionHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected BaseCurrencyActionWrapper instance is received
                if(responseObject instanceof BaseCurrencyActionWrapper){

                    //Get the received obtained ActionResponse instances
                    let actionResponse: ActionResponse = responseObject.getBaseCurrency();

                    //Check if the request is successful
                    if(actionResponse instanceof SuccessResponse){

                        //Get the Status
                        console.log("Status: " + actionResponse.getStatus().getValue());

                        //Get the Code
                        console.log("Code: " + actionResponse.getCode().getValue());

                        console.log("Details");

                        //Get the details map
                        let details: Map<string,any> = actionResponse.getDetails();

                        if(details !== null){
                            Array.from(details.keys()).forEach(key => {
                                console.log(key + ": " + details.get(key));
                            });
                        }

                        console.log("Message: " + actionResponse.getMessage().getValue());
                    }
                    //Check if the request returned an exception
                    else if(actionResponse instanceof APIException){

                        //Get the Status
                        console.log("Status: " + actionResponse.getStatus().getValue());

                        //Get the Code
                        console.log("Code: " + actionResponse.getCode().getValue());

                        console.log("Details");

                        //Get the details map
                        let details: Map<string,any> = actionResponse.getDetails();

                        if(details !== null){
                            Array.from(details.keys()).forEach(key => {
                                console.log(key + ": " + details.get(key));
                            });
                        }

                        //Get the Message
                        console.log("Message: " + actionResponse.getMessage().getValue());
                    }
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Update the Base Currency
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Update Base Currency
     * This method is used to update base currency details.
     */
    public static async updateBaseCurrency(){

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Get instance of BaseCurrencyWrapper Class that will contain the request body
        let request: BaseCurrencyWrapper = new BaseCurrencyWrapper();

        //Get instance of Currency Class
        let currency: Currency = new Currency();

        //To set the position of the ISO code in the base currency.
        //true: Display ISO code before the currency value.
        //false: Display ISO code after the currency value.
        currency.setPrefixSymbol(true);

        //To set the symbol of the base currency.
        currency.setSymbol("Af");

        //To set the rate at which the currency has to be exchanged for home base currency.
        currency.setExchangeRate("1.00");

        //To set currency Id
        currency.setId(BigInt("34770616008002"));

        let format: Format = new Format();

        //It can be a Period or Comma, depending on the base currency.
        format.setDecimalSeparator(new Choice("Period"));

        //It can be a Period, Comma, or Space, depending on the base currency.
        format.setThousandSeparator(new Choice("Comma"));

        //To set the number of decimal places allowed for the base currency. It can be 0, 2, or 3.
        format.setDecimalPlaces(new Choice("2"));

        //To set the format of the base currency
        currency.setFormat(format);

        //Set the Currency in BodyWrapper instance
        request.setBaseCurrency(currency);

        //Call updateBaseCurrency method that takes BodyWrapper instance as parameter
        let response: APIResponse<BaseCurrencyActionHandler> = await currenciesOperations.updateBaseCurrency(request);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            //Get object from response
            let responseObject: BaseCurrencyActionHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected BaseCurrencyActionWrapper instance is received
                if(responseObject instanceof BaseCurrencyActionWrapper){

                    //Get the received obtained ActionResponse instances
                    let actionResponse: ActionResponse = responseObject.getBaseCurrency();

                    //Check if the request is successful
                    if(actionResponse instanceof SuccessResponse){

                        //Get the Status
                        console.log("Status: " + actionResponse.getStatus().getValue());

                        //Get the Code
                        console.log("Code: " + actionResponse.getCode().getValue());

                        console.log("Details");

                        //Get the details map
                        let details: Map<string,any> = actionResponse.getDetails();

                        if(details !== null){
                            Array.from(details.keys()).forEach(key => {
                                console.log(key + ": " + details.get(key));
                            });
                        }

                        console.log("Message: " + actionResponse.getMessage().getValue());
                    }
                    //Check if the request returned an exception
                    else if(actionResponse instanceof APIException){

                        //Get the Status
                        console.log("Status: " + actionResponse.getStatus().getValue());

                        //Get the Code
                        console.log("Code: " + actionResponse.getCode().getValue());

                        console.log("Details");

                        //Get the details map
                        let details: Map<string,any> = actionResponse.getDetails();

                        if(details !== null){
                            Array.from(details.keys()).forEach(key => {
                                console.log(key + ": " + details.get(key));
                            });
                        }

                        //Get the Message
                        console.log("Message: " + actionResponse.getMessage().getValue());
                    }
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Get a Currency
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Get Currency 
     * This method is used to get the details of a specific currency.
     * @param currencyId Specify the unique ID of the currency.
     */
    public static async getCurrency(currencyId: bigint){

        //example
        //let currencyId = 34770616011001n;

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Call getCurrency method that takes currencyId as parameter
        let response: APIResponse<ResponseHandler> = await currenciesOperations.getCurrency(currencyId);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            if([204, 304].includes(response.getStatusCode())){
                console.log(response.getStatusCode() == 204? "No Content" : "Not Modified");

                return;
            }

            //Get object from response
            let responseObject: ResponseHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected ResponseWrapper instance is received
                if(responseObject instanceof ResponseWrapper){

                    //Get the array of obtained Currency instances
                    let currencies: Currency[] = responseObject.getCurrencies();

                    currencies.forEach(currency => {

                        //Get the Id of each currency
                        console.log("Currency Id: " + currency.getId());

                        //Get the IsoCode of each currency
                        console.log("Currency IsoCode: " + currency.getIsoCode());

                        //Get the Symbol of each currency
                        console.log("Currency Symbol: " + currency.getSymbol());

                        //Get the CreatedTime of each currency
                        console.log("Currency CreatedTime: " + currency.getCreatedTime());

                        //Get if the currency is active
                        console.log("Currency IsActive: " + currency.getIsActive().toString());

                        //Get the ExchangeRate of each currency
                        console.log("Currency ExchangeRate: " + currency.getExchangeRate());

                        //Get the format instance of each currency
                        let format: Format = currency.getFormat();

                        if(format !== null){

                            //Get the DecimalSeparator of the Format
                            console.log("Currency Format DecimalSeparator: " + format.getDecimalSeparator().getValue());

                            //Get the ThousandSeparator of the Format
                            console.log("Currency Format ThousandSeparator: " + format.getThousandSeparator().getValue());

                            //Get the DecimalPlaces of the Format
                            console.log("Currency Format DecimalPlaces: " + format.getDecimalPlaces().getValue());
                        }

                        //Get the createdBy User instance of each currency
                        let createdBy: User = currency.getCreatedBy();

                        //Check if createdBy is not null
                        if(createdBy !== null){

                            //Get the Name of the createdBy User
                            console.log("Currency CreatedBy User-Name: " + createdBy.getName());

                            //Get the ID of the createdBy User
                            console.log("Currency CreatedBy User-ID: " + createdBy.getId());
                        }

                        //Get the PrefixSymbol of each currency
                        console.log("Currency PrefixSymbol: " + currency.getPrefixSymbol().toString());

                        //Get the IsBase of each currency
                        console.log("Currency IsBase: " + currency.getIsBase().toString());

                        //Get the ModifiedTime of each currency
                        console.log("Currency ModifiedTime: " + currency.getModifiedTime());

                        //Get the Name of each currency
                        console.log("Currency Name: " + currency.getName());

                        //Get the modifiedBy User instance of each currency
                        let modifiedBy: User = currency.getModifiedBy();

                        //Check if modifiedBy is not null
                        if(modifiedBy !== null){

                            //Get the Name of the modifiedBy User
                            console.log("Currency ModifiedBy User-Name: " + modifiedBy.getName());

                            //Get the ID of the modifiedBy User
                            console.log("Currency ModifiedBy User-ID: " + modifiedBy.getId());
                        }
                    });
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
 }
 
Update a Currency
              
              
import {CurrenciesOperations} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currencies_operations";
import {Currency} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/currency";
import {ResponseHandler} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_handler";
import {SuccessResponse} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/success_response";
import {ResponseWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/response_wrapper";
import {ActionWrapper} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_wrapper";
import {APIException} from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/api_exception";
import { APIResponse } from "@zohocrm/typescript-sdk-2.0/routes/controllers/api_response";
import { Format } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/format";
import { User } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/users/user";
import { BodyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/body_wrapper";
import { Choice } from "@zohocrm/typescript-sdk-2.0/utils/util/choice";
import { ActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_handler";
import { ActionResponse } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/action_response";
import { BaseCurrencyWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_wrapper";
import { BaseCurrencyActionHandler } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_handler";
import { BaseCurrencyActionWrapper } from "@zohocrm/typescript-sdk-2.0/core/com/zoho/crm/api/currencies/base_currency_action_wrapper";

export class Currencies{
    /**
     * Update Currency 
     * This method is used to update currency details.
     * @param currencyId Specify the unique ID of the currency.
     */
    public static async updateCurrency(currencyId: bigint){

        //example
        //let currencyId = 34770616011001n;

        //Get instance of CurrenciesOperations Class
        let currenciesOperations: CurrenciesOperations = new CurrenciesOperations();

        //Get instance of BodyWrapper Class that will contain the request body
        let request: BodyWrapper = new BodyWrapper();

        //Array to hold Currency instances
        let currencies: Currency[] = [];

        //Get instance of Currency Class
        let currency: Currency = new Currency();

        //To set the position of the ISO code in the currency.
        //true: Display ISO code before the currency value.
        //false: Display ISO code after the currency value.
        currency.setPrefixSymbol(true);

        //To set the rate at which the currency has to be exchanged for home currency.
        currency.setExchangeRate("5.00");

        //To set the status of the currency.
        //true: The currency is active.
        //false: The currency is inactive.
        currency.setIsActive(true);

        let format: Format = new Format();

        //It can be a Period or Comma, depending on the currency.
        format.setDecimalSeparator(new Choice("Period"));

        //It can be a Period, Comma, or Space, depending on the currency.
        format.setThousandSeparator(new Choice("Comma"));

        //To set the number of decimal places allowed for the currency. It can be 0, 2, or 3.
        format.setDecimalPlaces(new Choice("2"));

        //To set the format of the currency
        currency.setFormat(format);

        //Add the Currency instance to the array
        currencies.push(currency);

        //Set the array to Currency in BodyWrapper instance
        request.setCurrencies(currencies);

        //Call updateCurrency method that takes BodyWrapper instance and currencyId as parameters
        let response: APIResponse<ActionHandler> = await currenciesOperations.updateCurrency(currencyId, request);

        if(response !== null){

            //Get the status code from response
            console.log("Status Code: " + response.getStatusCode());

            //Get object from response
            let responseObject: ActionHandler = response.getObject();

            if(responseObject !== null){

                //Check if expected ActionWrapper instance is received
                if(responseObject instanceof ActionWrapper){

                    //Get the array of obtained ActionResponse instances
                    let actionResponses: ActionResponse[] = responseObject.getCurrencies();

                    actionResponses.forEach(actionResponse => {

                        //Check if the request is successful
                        if(actionResponse instanceof SuccessResponse){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                        //Check if the request returned an exception
                        else if(actionResponse instanceof APIException){

                            //Get the Status
                            console.log("Status: " + actionResponse.getStatus().getValue());

                            //Get the Code
                            console.log("Code: " + actionResponse.getCode().getValue());

                            console.log("Details");

                            //Get the details map
                            let details: Map<string,any> = actionResponse.getDetails();

                            if(details !== null){
                                Array.from(details.keys()).forEach(key => {
                                    console.log(key + ": " + details.get(key));
                                });
                            }

                            //Get the Message
                            console.log("Message: " + actionResponse.getMessage().getValue());
                        }
                    });
                }
                //Check if the request returned an exception
                else if(responseObject instanceof APIException){

                    //Get the Status
                    console.log("Status: " + responseObject.getStatus().getValue());

                    //Get the Code
                    console.log("Code: " + responseObject.getCode().getValue());

                    console.log("Details");

                    //Get the details map
                    let details: Map<string,any> = responseObject.getDetails();

                    if(details !== null){
                        Array.from(details.keys()).forEach(key => {
                            console.log(key + ": " + details.get(key));
                        });
                    }

                    //Get the Message
                    console.log("Message: " + responseObject.getMessage().getValue());
                }
            }
        }
    }
}