Others

isPolicyExist

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

Get is the policy exist.

NameTypeDescription

policyId

string

The policy id.

NameTypeDescription

[0]

bool

True if the policy is exist, false otherwise.

getPolicyStatus

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

Get the policy status.

NameTypeDescription

policyId

string

The policy id.

NameTypeDescription

[0]

The policy status.

getPoliciesStatus

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

Get the policies status.

NameTypeDescription

policyIds

string[]

The parameter that contains the policy ids.

NameTypeDescription

[0]

The policies status.

getPolicyData

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

Get the policy data.

NameTypeDescription

policyId

string

The policy id.

NameTypeDescription

[0]

The policy data.

getPoliciesData

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

Get the policies data.

NameTypeDescription

policyIds

string[]

The parameter that contains the policy ids.

NameTypeDescription

[0]

The policies data.

Last updated