Build
A Build resource, describes the process of assembling a container image that copes with the requirement of an Integration or IntegrationKit.
type Build struct {
	Spec   BuildSpec    (1)
	Status BuildStatus  (2)
}
type BuildSpec struct {
	Tasks []Task        (3)
}
| 1 | The desired state | 
| 2 | The status of the object at current time | 
| 3 | The build tasks | 
| 
 the full go definition can be found here  |