Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 701 Bytes

File metadata and controls

28 lines (20 loc) · 701 Bytes

AssetTypesConfigInner

oneOf schemas

Example

// Import classes:
import com.fireblocks.sdk.model.AssetTypesConfigInner;
import com.fireblocks.sdk.model.String;

public class Example {
    public static void main(String[] args) {
        AssetTypesConfigInner exampleAssetTypesConfigInner = new AssetTypesConfigInner();

        // create a new String
        String exampleString = new String();
        // set AssetTypesConfigInner to String
        exampleAssetTypesConfigInner.setActualInstance(exampleString);
        // to get back the String set earlier
        String testString = (String) exampleAssetTypesConfigInner.getActualInstance();
    }
}