...

Source file src/github.com/redhat-developer/odo/pkg/apiserver-gen/go/model_apply_command.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 ApplyCommand struct {
    13  	Component string `json:"component"`
    14  }
    15  
    16  // AssertApplyCommandRequired checks if the required fields are not zero-ed
    17  func AssertApplyCommandRequired(obj ApplyCommand) error {
    18  	elements := map[string]interface{}{
    19  		"component": obj.Component,
    20  	}
    21  	for name, el := range elements {
    22  		if isZero := IsZeroValue(el); isZero {
    23  			return &RequiredError{Field: name}
    24  		}
    25  	}
    26  
    27  	return nil
    28  }
    29  
    30  // AssertRecurseApplyCommandRequired recursively checks if required fields are not zero-ed in a nested slice.
    31  // Accepts only nested slice of ApplyCommand (e.g. [][]ApplyCommand), otherwise ErrTypeAssertionError is thrown.
    32  func AssertRecurseApplyCommandRequired(objSlice interface{}) error {
    33  	return AssertRecurseInterfaceRequired(objSlice, func(obj interface{}) error {
    34  		aApplyCommand, ok := obj.(ApplyCommand)
    35  		if !ok {
    36  			return ErrTypeAssertionError
    37  		}
    38  		return AssertApplyCommandRequired(aApplyCommand)
    39  	})
    40  }
    41  

View as plain text