コード例 #1
0
ファイル: APIResource.cs プロジェクト: ZipRecruiter/JobAlerts
 public APIResource(JobAlertsAPI handle)
 {
     this.handle = handle;
 }
コード例 #2
0
 public SubscriberResource(JobAlertsAPI handle)
     : base(handle)
 {
     this.endpoint = "subscriber";
 }
コード例 #3
0
ファイル: Subscriber.cs プロジェクト: ZipRecruiter/JobAlerts
 public void SetRelationData(JobAlertsAPI handle)
 {
     /*foreach (SubscriberResult res in this.Results) {
         res.APIHandle = handle;
     }*/
 }
コード例 #4
0
 public BatchResource(JobAlertsAPI handle)
     : base(handle)
 {
     this.endpoint = "batch";
 }