...

Source file src/github.com/redhat-developer/odo/pkg/apiserver-gen/go/model__component_command_post_request.go

Documentation: github.com/redhat-developer/odo/pkg/apiserver-gen/go

     1  /*
     2   * odo dev
     3   *
     4   * API interface for 'odo dev'
     5   *
     6   * API version: 0.1
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package openapi
    11  
    12  type ComponentCommandPostRequest struct {
    13  
    14  	// Name of the command that should be executed
    15  	Name string `json:"name,omitempty"`
    16  }
    17  
    18  // AssertComponentCommandPostRequestRequired checks if the required fields are not zero-ed
    19  func AssertComponentCommandPostRequestRequired(obj ComponentCommandPostRequest) error {
    20  	return nil
    21  }
    22  
    23  // AssertRecurseComponentCommandPostRequestRequired recursively checks if required fields are not zero-ed in a nested slice.
    24  // Accepts only nested slice of ComponentCommandPostRequest (e.g. [][]ComponentCommandPostRequest), otherwise ErrTypeAssertionError is thrown.
    25  func AssertRecurseComponentCommandPostRequestRequired(objSlice interface{}) error {
    26  	return AssertRecurseInterfaceRequired(objSlice, func(obj interface{}) error {
    27  		aComponentCommandPostRequest, ok := obj.(ComponentCommandPostRequest)
    28  		if !ok {
    29  			return ErrTypeAssertionError
    30  		}
    31  		return AssertComponentCommandPostRequestRequired(aComponentCommandPostRequest)
    32  	})
    33  }
    34  

View as plain text