Others

isPolicyExist

function isPolicyExist(string _policyId_) external view returns (bool)

Get is the policy exist.

Name
Type
Description

policyId

string

The policy id.

Name
Type
Description

[0]

bool

True if the policy is exist, false otherwise.

getPolicyStatus

function getPolicyStatus(string _policyId_) external view returns (PolicyStatus)

Get the policy status.

Name
Type
Description

policyId

string

The policy id.

Name
Type
Description

[0]

The policy status.

getPoliciesStatus

function getPoliciesStatus(string[] _policyIds_) external view returns (PolicyStatus[])

Get the policies status.

Name
Type
Description

policyIds

string[]

The parameter that contains the policy ids.

Name
Type
Description

[0]

The policies status.

getPolicyData

function getPolicyData(string _policyId_) external view returns (PolicyData)

Get the policy data.

Name
Type
Description

policyId

string

The policy id.

Name
Type
Description

[0]

The policy data.

getPoliciesData

function getPoliciesData(string[] _policyIds_) external view returns (PolicyData[])

Get the policies data.

Name
Type
Description

policyIds

string[]

The parameter that contains the policy ids.

Name
Type
Description

[0]

The policies data.

Last updated