github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/chat/giphy/types.go (about)

     1  package giphy
     2  
     3  type gifImage struct {
     4  	URL    string
     5  	MP4    string
     6  	Width  string
     7  	Height string
     8  }
     9  
    10  type gifObject struct {
    11  	URL    string
    12  	Images map[string]gifImage
    13  }
    14  
    15  type giphyResponse struct {
    16  	Data []gifObject
    17  }