Skip to main content
Version: v30.0.x

Type Alias: ModifyAssetParams

ModifyAssetParams = { assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name: string; } | { assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible: true; name?: string; } | { assetType?: KnownAssetType | string | BigNumber; fundingRound: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name?: string; } | { assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers: SecurityIdentifier[]; makeDivisible?: true; name?: string; } | { assetType: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name?: string; }

Defined in: src/api/procedures/types.ts:1320

Union Members

Type Literal

{ assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name: string; }

NameTypeDescriptionDefined in

assetType?

KnownAssetType | string | BigNumber

src/api/procedures/types.ts:1329

fundingRound?

string

src/api/procedures/types.ts:1327

identifiers?

SecurityIdentifier[]

src/api/procedures/types.ts:1328

makeDivisible?

true

makes an indivisible Asset divisible

src/api/procedures/types.ts:1325

name

string

src/api/procedures/types.ts:1326


Type Literal

{ assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible: true; name?: string; }


Type Literal

{ assetType?: KnownAssetType | string | BigNumber; fundingRound: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name?: string; }


Type Literal

{ assetType?: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers: SecurityIdentifier[]; makeDivisible?: true; name?: string; }


Type Literal

{ assetType: KnownAssetType | string | BigNumber; fundingRound?: string; identifiers?: SecurityIdentifier[]; makeDivisible?: true; name?: string; }