2020-02-17 11:42:57 +00:00
|
|
|
package request
|
2020-01-14 12:02:38 +00:00
|
|
|
|
2019-11-20 13:07:43 +00:00
|
|
|
// ContractDetails contains contract metadata.
|
|
|
|
type ContractDetails struct {
|
|
|
|
Author string
|
|
|
|
Email string
|
|
|
|
Version string
|
|
|
|
ProjectName string `yaml:"name"`
|
|
|
|
Description string
|
|
|
|
HasStorage bool
|
|
|
|
HasDynamicInvocation bool
|
|
|
|
IsPayable bool
|
2020-02-17 11:42:57 +00:00
|
|
|
ReturnType StackParamType
|
|
|
|
Parameters []StackParamType
|
2019-11-20 13:07:43 +00:00
|
|
|
}
|