...

Package chat

import "github.com/99designs/gqlgen/codegen/config/testdata/autobinding/chat"
Overview
Index

Overview ▾

type ChatAPI

type ChatAPI struct {
    ID string `json:"id"`
}

type Message

type Message struct {
    ID        string    `json:"id"`
    Text      string    `json:"text"`
    CreatedBy string    `json:"createdBy"`
    CreatedAt time.Time `json:"createdAt"`
}

type ProductSku

type ProductSku string
const (
    ProductSkuTrial ProductSku = "Trial"
)