package
Version:
v0.2.1
Opens a new window with list of versions in this module.
Published: Sep 25, 2025
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type ApiKeyData struct {
Username string `json:"username"`
APIKey string `json:"api_key"`
PhoneIslandToken string `json:"phone_island_token"`
}
type LoginJson struct {
Username string `json:"username" structs:"username"`
Password string `json:"password" structs:"password"`
}
type OTPJson struct {
Username string `json:"username" structs:"username"`
OTP string `json:"otp" structs:"otp"`
}
type StatusBadRequest struct {
Code int `json:"code" example:"400" structs:"code"`
Message string `json:"message" example:"Bad request" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusInternalServerError struct {
Code int `json:"code" example:"500" structs:"code"`
Message string `json:"message" example:"Internal server error" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusNotFound struct {
Code int `json:"code" example:"404" structs:"code"`
Message string `json:"message" example:"Not found" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusOK struct {
Code int `json:"code" example:"200" structs:"code"`
Message string `json:"message" example:"Success" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusServiceUnavailable struct {
Code int `json:"code" example:"503" structs:"code"`
Message string `json:"message" example:"Service unavailable" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusUnauthorized struct {
Code int `json:"code" example:"401" structs:"code"`
Message string `json:"message" example:"Unauthorized" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.