# Zilla::IoK8sApiBatchV1JobCondition ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **last_probe_time** | **Time** | Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. | [optional] | | **last_transition_time** | **Time** | Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. | [optional] | | **message** | **String** | Human readable message indicating details about last transition. | [optional] | | **reason** | **String** | (brief) reason for the condition's last transition. | [optional] | | **status** | **String** | Status of the condition, one of True, False, Unknown. | | | **type** | **String** | Type of job condition, Complete or Failed. | | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiBatchV1JobCondition.new( last_probe_time: null, last_transition_time: null, message: null, reason: null, status: null, type: null ) ```