1
Fork 0
photoview/api/graphql/models/generated.go

78 lines
2.1 KiB
Go
Raw Normal View History

2020-01-30 14:28:14 +01:00
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
2020-02-01 00:08:23 +01:00
package models
2020-01-30 14:28:14 +01:00
2020-02-02 00:29:42 +01:00
import (
"time"
)
2020-02-01 14:52:27 +01:00
type Album struct {
ID string `json:"id"`
Title *string `json:"title"`
Photos []*Photo `json:"photos"`
SubAlbums []*Album `json:"subAlbums"`
ParentAlbum *Album `json:"parentAlbum"`
Owner *User `json:"owner"`
Path *string `json:"path"`
}
2020-01-30 14:28:14 +01:00
type AuthorizeResult struct {
Success bool `json:"success"`
Status string `json:"status"`
Token *string `json:"token"`
}
2020-02-01 14:52:27 +01:00
type Photo struct {
ID string `json:"id"`
Title *string `json:"title"`
// Local filepath for the photo
Path *string `json:"path"`
// URL to display the photo in full resolution
Original *PhotoURL `json:"original"`
// URL to display the photo in a smaller resolution
Thumbnail *PhotoURL `json:"thumbnail"`
// The album that holds the photo
2020-02-02 00:29:42 +01:00
Album *Album `json:"album"`
Exif *PhotoExif `json:"exif"`
}
// EXIF metadata from the camera
type PhotoExif struct {
Photo *Photo `json:"photo"`
// The model name of the camera
Camera *string `json:"camera"`
// The maker of the camera
Maker *string `json:"maker"`
// The name of the lens
Lens *string `json:"lens"`
DateShot *time.Time `json:"dateShot"`
// The formatted filesize of the image
FileSize *string `json:"fileSize"`
// The exposure time of the image
Exposure *string `json:"exposure"`
// The aperature stops of the image
Aperture *float64 `json:"aperture"`
// The ISO setting of the image
Iso *int `json:"iso"`
// The focal length of the lens, when the image was taken
FocalLength *string `json:"focalLength"`
// A formatted description of the flash settings, when the image was taken
Flash *string `json:"flash"`
2020-02-01 14:52:27 +01:00
}
type PhotoURL struct {
// URL for previewing the image
URL *string `json:"url"`
// Width of the image in pixels
Width *int `json:"width"`
// Height of the image in pixels
Height *int `json:"height"`
}
2020-02-01 17:58:45 +01:00
type ScannerResult struct {
Finished bool `json:"finished"`
Success bool `json:"success"`
Progress *float64 `json:"progress"`
Message *string `json:"message"`
}