github.com/iron-io/functions@v0.0.0-20180820112432-d59d7d1c40b2/api/models/start.go (about)

     1  package models
     2  
     3  import "github.com/go-openapi/strfmt"
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the swagger generate command
     7  
     8  /*Start start
     9  
    10  swagger:model Start
    11  */
    12  type Start struct {
    13  
    14  	/* Time when task started execution. Always in UTC.
    15  	 */
    16  	StartedAt strfmt.DateTime `json:"started_at,omitempty"`
    17  }
    18  
    19  // Validate validates this start
    20  func (m *Start) Validate(formats strfmt.Registry) error {
    21  	return nil
    22  }