16 lines
574 B
Go
16 lines
574 B
Go
package viewmodel
|
|
|
|
type Plan struct {
|
|
ID string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
InternalID string `json:"key,omitempty"`
|
|
Status bool `json:"desc,omitempty"`
|
|
PlanEntityID int64 `json:"plan_entity_id,omitempty"`
|
|
EntityID int64 `json:"entity_id,omitempty"`
|
|
PayerID int64 `json:"payer_id,omitempty"`
|
|
PayerName string `json:"payer_name,omitempty"`
|
|
PrefixID string `json:"prefix_uuid,omitempty"`
|
|
AlphaPrefix string `json:"alpha_prefix,omitempty"`
|
|
Active bool `json:"active,omitempty"`
|
|
}
|