18F/e-QIP-prototype

View on GitHub
api/number.go

Summary

Maintainability
A
0 mins
Test Coverage
package api

import (
    "encoding/json"
)

// Number is a basic input.
type Number struct {
    ID    int    `json:"-"`
    Value string `json:"value"`
}

// Unmarshal bytes in to the entity properties.
func (entity *Number) Unmarshal(raw []byte) error {
    return json.Unmarshal(raw, entity)
}

// Marshal to payload structure
func (entity *Number) Marshal() Payload {
    return MarshalPayloadEntity("number", entity)
}