Files
go-nkode/core/model/response.go
2024-08-23 10:18:39 -05:00

21 lines
427 B
Go

package model
import "github.com/google/uuid"
type CreateNewCustomerResp struct {
CustomerId uuid.UUID `json:"customer_id"`
}
type GenerateSignupInterfaceResp struct {
SessionId uuid.UUID `json:"session_id"`
UserInterface []int `json:"user_interface"`
}
type SetNKodeResp struct {
UserInterface []int `json:"user_interface"`
}
type GetLoginInterfaceResp struct {
UserInterface []int `json:"user_interface"`
}