Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 740 Bytes

File metadata and controls

28 lines (20 loc) · 740 Bytes

CreateQuoteScopeInner

oneOf schemas

Example

// Import classes:
import com.fireblocks.sdk.model.CreateQuoteScopeInner;
import com.fireblocks.sdk.model.ScopeItem;

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

        // create a new ScopeItem
        ScopeItem exampleScopeItem = new ScopeItem();
        // set CreateQuoteScopeInner to ScopeItem
        exampleCreateQuoteScopeInner.setActualInstance(exampleScopeItem);
        // to get back the ScopeItem set earlier
        ScopeItem testScopeItem = (ScopeItem) exampleCreateQuoteScopeInner.getActualInstance();
    }
}