package models

import "github.com/shopspring/decimal"

type GetAccountAmountRequest struct {
	Type   string `json:"type"`
	OpenId string `json:"open_id"`
}

type GetAccountAmountReply struct {
	Amount decimal.Decimal `json:"amount"`
}