github.com/grpc-ecosystem/grpc-gateway/v2@v2.19.1/examples/internal/clients/abe/model_a_bit_of_everything_nested.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  
    11  package abe
    12  
    13  // Nested is nested type.
    14  type ABitOfEverythingNested struct {
    15  	// name is nested field.
    16  	Name string `json:"name,omitempty"`
    17  	Amount int64 `json:"amount,omitempty"`
    18  	// DeepEnum description.
    19  	Ok *NestedDeepEnum `json:"ok,omitempty"`
    20  }