public IntegrationDispatchRequestBuilder(IntegrationJobData data, BatchJobObjectType objectType, string objectId)
     : this()
 {
     this.Data       = data;
     this.ObjectType = objectType;
     this.ObjectId   = objectId;
 }
 public static IntegrationDispatchRequestBuilder Dispatch(IntegrationJobData data, BatchJobObjectType objectType, string objectId)
 {
     return(new IntegrationDispatchRequestBuilder(data, objectType, objectId));
 }