currency

package
v0.0.0-...-c52fe67 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 5, 2020 License: GPL-3.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Handler

type Handler struct {
	CurrencyService service.RegionCurrencyService
	View            View
}

func NewHandler

func NewHandler(p Params) Handler

func (*Handler) List

func (h *Handler) List(c echo.Context) error

swagger:route GET /region-currencies region_currencies listRegionCurrency

Lists all available region currencies

This endpoint lists all available region currencies

Responses:
  default: HTTPError
  200: RegionCurrencyList
  400: HTTPError
  404: HTTPError
  500: HTTPError

type Item

type Item struct {
	// example: 12
	ID uint `json:"id"`

	// example: 2
	RegionID uint `json:"region_id"`

	// example: USD
	RegionCode string `json:"region_code"`

	// example: USD
	CurrencyCode string `json:"currency_code"`

	// example: $
	Grapheme string `json:"grapheme"`

	// example: 2020-06-19 11:00:08.340646 +0000 UTC
	UpdatedAt string `json:"updated_at"`

	// example: 2020-06-19 11:00:08.340646 +0000 UTC
	CreatedAt string `json:"created_at"`

	// example: false
	IsActiveForUsers bool `json:"is_active_for_users"`

	// example: true
	IsActiveForDevelopers bool `json:"is_active_for_developers"`

	// example: true
	IsStandardRelation bool `json:"is_standard_relation"`

	// example: true
	IsDefault bool `json:"is_default"`
}

type List

type List []Item

type Params

type Params struct {
	fx.In

	CurrencyService service.RegionCurrencyService
	View            View
}

type View

type View struct{}

func NewView

func NewView() View

func (View) View

func (v View) View(item entity.RegionCurrency) Item

func (View) ViewList

func (v View) ViewList(items []entity.RegionCurrency) List

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL