2022-05-03 15:26:32 +05:30
|
|
|
package model
|
|
|
|
|
|
2025-03-06 15:39:45 +05:30
|
|
|
import "time"
|
2022-12-09 20:16:09 +05:30
|
|
|
|
2025-03-06 15:39:45 +05:30
|
|
|
type ResetPasswordRequest struct {
|
|
|
|
|
Password string `json:"password"`
|
|
|
|
|
Token string `json:"token"`
|
2023-07-26 12:27:46 +05:30
|
|
|
}
|
|
|
|
|
|
2023-10-09 21:06:01 +05:30
|
|
|
type IngestionKey struct {
|
|
|
|
|
KeyId string `json:"keyId" db:"key_id"`
|
|
|
|
|
Name string `json:"name" db:"name"`
|
|
|
|
|
CreatedAt time.Time `json:"createdAt" db:"created_at"`
|
|
|
|
|
IngestionKey string `json:"ingestionKey" db:"ingestion_key"`
|
|
|
|
|
IngestionURL string `json:"ingestionURL" db:"ingestion_url"`
|
|
|
|
|
DataRegion string `json:"dataRegion" db:"data_region"`
|
|
|
|
|
}
|