Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
borderStylesolid

Original Estimate

  • Field name : Original Estimate

  • Key: timeoriginalestimate

  • Description : The Original Estimate field is a string representation of a number representing the original time estimate in seconds.

  • Structure :

    Expand
    titleClick here to see the structure of Original Estimate field


    Section


    Column


    Code Block
    titleStructure
    linenumberstrue
    "issue":
    {
    	...
    	...
    	"fields":
    	{
    		...
    		...
    		"timeoriginalestimate": Number, //Original estimate in seconds
    		...
    	}
    	...
    }



    Column
    width700px


    Code Block
    titleExample
    linenumberstrue
    "issue":
    {
    	...
    	...
    	"fields":
    	{
    		...
    		...
    		"timeoriginalestimate": 144000,
    		...
    	}
    	...
    }





  • Accessing the Original Estimate field
    • Original Estimate of the issue in seconds : {{ issue.fields.timeoriginalEstimate timeoriginalestimate }}

    • You can access the Original estimate from the Time tracking field as well.

...