21 lines
427 B
Go
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"`
|
|
}
|