2020-02-17 14:42:57 +03:00
|
|
|
package request
|
2020-01-14 15:02:38 +03:00
|
|
|
|
2019-11-20 16:07:43 +03: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 14:42:57 +03:00
|
|
|
ReturnType StackParamType
|
|
|
|
Parameters []StackParamType
|
2019-11-20 16:07:43 +03:00
|
|
|
}
|