CurrencyCode

Print
Apex classe Details
Name CurrencyCode
Label omnistudio.CurrencyCode
Namespace Prefix omnistudio
Status Active
Api Version 60
Apex Code
/*
This file is generated and isn't the actual source code for this
managed global class.
This read-only file shows the class's global constructors,
methods, variables, and properties.
To enable code to compile, all methods return null.
*/
global class CurrencyCode {
    global static String CURRENCY_ISO_CODE;
    global CurrencyCode() {

    }
    global static String getCurrencyIsoCode(SObject someObject) {
        return null;
    }
    global static String getCurrencySymbol(SObject someObject) {
        return null;
    }
    global static String getCurrencySymbolFromIso(String currencyCode) {
        return null;
    }
    global static String getCurrencySymbolFromMap(Map<String,Object> someObject) {
        return null;
    }
    global static Boolean isMultiCurrencyOrg() {
        return null;
    }
}