RestObjects
Construction
import { Account } from './generated';
// properties can be set during construction
const acc1 = new Account({
name: 'hello world',
revenue: 100
});
// or cloned from another Account
const acc2 = new Account(acc1);Last updated
Was this helpful?