Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.09 KB

jobDetail.md

File metadata and controls

26 lines (20 loc) · 1.09 KB

OneBlink .Net SDK | JobDetail Model

JobDetail()

Constructor

Parameter Required Type Description Default Value
title Yes string Title of the job.
key No string Key of the job. null
type No string Type of the job. null
description No string Description of the job. null
priority No int Number used to prioritise the job in the OneBlink system. null

Example

OneBlink.SDK.Model.JobDetail jobToCreateDetails = new OneBlink.SDK.Model.JobDetail(
  title: "My Job Title",
  key: "My Key",
  type: "My Job type",
  description: "My Job description",
  priority: 1
);