github.com/grpc-ecosystem/grpc-gateway/v2@v2.19.1/examples/internal/clients/abe/model_the_book_to_update__1.go (about) 1 /* 2 * A Bit of Everything 3 * 4 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 5 * 6 * API version: 1.0 7 * Contact: none@example.com 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package abe 11 import ( 12 "time" 13 ) 14 15 // The book's `name` field is used to identify the book to be updated. Format: publishers/{publisher}/books/{book} 16 type TheBookToUpdate1 struct { 17 // Output only. The book's ID. 18 Id string `json:"id,omitempty"` 19 // Output only. Creation time of the book. 20 CreateTime time.Time `json:"createTime,omitempty"` 21 }