Interface MockCallArgs

MockResourceArgs is used to construct call Mock.

interface MockCallArgs {
    inputs: any;
    provider?: string;
    token: string;
}

Properties

inputs: any

The arguments provided to the function call.

provider?: string

If provided, the identifier of the provider instance being used to make the call.

token: string

The token that indicates which function is being called. This token is of the form "package:module:function".

Generated using TypeDoc