octocrate 2.0.0

A comprehensive GitHub REST API library based on Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
use octocrate_core::*;
#[allow(unused_imports)]
use octocrate_types::*;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use typed_builder::TypedBuilder;

pub mod list_for_org {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Project>;

  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryState {
    #[serde(rename = "open")]
    Open,
    #[serde(rename = "closed")]
    Closed,
    #[serde(rename = "all")]
    All,
  }

  impl ToString for QueryState {
    fn to_string(&self) -> String {
      match self {
        QueryState::Open => "open".to_string(),
        QueryState::Closed => "closed".to_string(),
        QueryState::All => "all".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// Indicates the state of the projects to return.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<QueryState>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

pub mod create_for_org {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Project;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// The description of the project.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub body: Option<String>,
    /// The name of the project.
    pub name: String,
  }
}

pub mod get_card {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectCard;
}

pub mod update_card {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectCard;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// Whether or not the card is archived
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub archived: Option<bool>,
    /// The project card's note
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub note: Option<String>,
  }
}

pub mod move_card {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// The unique identifier of the column the card should be moved to
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub column_id: Option<i64>,
    /// The position of the card in a column. Can be one of: `top`, `bottom`, or `after:<card_id>` to place after the specified card.
    pub position: String,
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Response {}
}

pub mod get_column {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectColumn;
}

pub mod update_column {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectColumn;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// Name of the project column
    pub name: String,
  }
}

pub mod list_cards {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<ProjectCard>;

  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryArchivedState {
    #[serde(rename = "all")]
    All,
    #[serde(rename = "archived")]
    Archived,
    #[serde(rename = "not_archived")]
    NotArchived,
  }

  impl ToString for QueryArchivedState {
    fn to_string(&self) -> String {
      match self {
        QueryArchivedState::All => "all".to_string(),
        QueryArchivedState::Archived => "archived".to_string(),
        QueryArchivedState::NotArchived => "not_archived".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// Filters the project cards that are returned by the card's state.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub archived_state: Option<QueryArchivedState>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

pub mod create_card {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectCard;

  #[derive(Debug, Clone, Serialize, Deserialize)]
  #[serde(untagged)]
  pub enum Request {
    RequestItem1(RequestItem1),
    RequestItem2(RequestItem2),
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct RequestItem1 {
    /// The project card's note
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub note: Option<String>,
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct RequestItem2 {
    /// The unique identifier of the content associated with the card
    pub content_id: i64,
    /// The piece of content associated with the card
    pub content_type: String,
  }
}

pub mod move_column {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// The position of the column in a project. Can be one of: `first`, `last`, or `after:<column_id>` to place after the specified column.
    pub position: String,
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Response {}
}

pub mod get {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Project;
}

pub mod update {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Project;

  /// The baseline permission that all organization members have on this project
  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum RequestOrganizationPermission {
    #[serde(rename = "read")]
    Read,
    #[serde(rename = "write")]
    Write,
    #[serde(rename = "admin")]
    Admin,
    #[serde(rename = "none")]
    None,
  }

  impl ToString for RequestOrganizationPermission {
    fn to_string(&self) -> String {
      match self {
        RequestOrganizationPermission::Read => "read".to_string(),
        RequestOrganizationPermission::Write => "write".to_string(),
        RequestOrganizationPermission::Admin => "admin".to_string(),
        RequestOrganizationPermission::None => "none".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// Body of the project
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub body: Option<String>,
    /// Name of the project
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub name: Option<String>,
    /// The baseline permission that all organization members have on this project
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub organization_permission: Option<RequestOrganizationPermission>,
    /// Whether or not this project can be seen by everyone.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub private: Option<bool>,
    /// State of the project; either 'open' or 'closed'
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<String>,
  }
}

pub mod list_collaborators {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<SimpleUser>;

  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryAffiliation {
    #[serde(rename = "outside")]
    Outside,
    #[serde(rename = "direct")]
    Direct,
    #[serde(rename = "all")]
    All,
  }

  impl ToString for QueryAffiliation {
    fn to_string(&self) -> String {
      match self {
        QueryAffiliation::Outside => "outside".to_string(),
        QueryAffiliation::Direct => "direct".to_string(),
        QueryAffiliation::All => "all".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's organization. `direct` means collaborators with permissions to a project, regardless of organization membership status. `all` means all collaborators the authenticated user can see.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub affiliation: Option<QueryAffiliation>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

pub mod add_collaborator {
  #[allow(unused_imports)]
  use super::*;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// The permission to grant the collaborator.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub permission: Option<ReadWriteAdminPermission>,
  }
}

pub mod get_permission_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectCollaboratorPermission;
}

pub mod list_columns {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<ProjectColumn>;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

pub mod create_column {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = ProjectColumn;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// Name of the project column
    pub name: String,
  }
}

pub mod list_for_repo {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Project>;

  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryState {
    #[serde(rename = "open")]
    Open,
    #[serde(rename = "closed")]
    Closed,
    #[serde(rename = "all")]
    All,
  }

  impl ToString for QueryState {
    fn to_string(&self) -> String {
      match self {
        QueryState::Open => "open".to_string(),
        QueryState::Closed => "closed".to_string(),
        QueryState::All => "all".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// Indicates the state of the projects to return.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<QueryState>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

pub mod create_for_repo {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Project;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// The description of the project.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub body: Option<String>,
    /// The name of the project.
    pub name: String,
  }
}

pub mod create_for_authenticated_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Project;

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Request {
    /// Body of the project
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub body: Option<String>,
    /// Name of the project
    pub name: String,
  }
}

pub mod list_for_user {
  #[allow(unused_imports)]
  use super::*;

  pub type Response = Vec<Project>;

  #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Copy)]
  pub enum QueryState {
    #[serde(rename = "open")]
    Open,
    #[serde(rename = "closed")]
    Closed,
    #[serde(rename = "all")]
    All,
  }

  impl ToString for QueryState {
    fn to_string(&self) -> String {
      match self {
        QueryState::Open => "open".to_string(),
        QueryState::Closed => "closed".to_string(),
        QueryState::All => "all".to_string(),
      }
    }
  }

  #[derive(Debug, Clone, Serialize, Deserialize, TypedBuilder)]
  #[builder(field_defaults(setter(into)))]
  pub struct Query {
    /// Indicates the state of the projects to return.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub state: Option<QueryState>,
    /// The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub per_page: Option<i64>,
    /// The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
    #[serde(skip_serializing_if = "Option::is_none")]
    #[builder(default, setter(strip_option))]
    pub page: Option<i64>,
  }
}

/// Interact with GitHub Projects.
pub struct GitHubProjectsAPI {
  config: SharedAPIConfig,
}

impl GitHubProjectsAPI {
  pub fn new(config: &SharedAPIConfig) -> Self {
    Self {
      config: config.clone(),
    }
  }

  /// **List organization projects**
  ///
  /// Lists the projects in an organization. Returns a `404 Not Found` status if projects are disabled in the organization. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#list-organization-projects](https://docs.github.com/rest/projects/projects#list-organization-projects)
  pub fn list_for_org(
    &self,
    org: impl Into<String>,
  ) -> Request<(), list_for_org::Query, list_for_org::Response> {
    let org = org.into();
    let url = format!("/orgs/{org}/projects");

    Request::<(), list_for_org::Query, list_for_org::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Create an organization project**
  ///
  /// Creates an organization project board. Returns a `410 Gone` status if projects are disabled in the organization or if the organization does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#create-an-organization-project](https://docs.github.com/rest/projects/projects#create-an-organization-project)
  pub fn create_for_org(
    &self,
    org: impl Into<String>,
  ) -> Request<create_for_org::Request, (), create_for_org::Response> {
    let org = org.into();
    let url = format!("/orgs/{org}/projects");

    Request::<create_for_org::Request, (), create_for_org::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Get a project card**
  ///
  /// Gets information about a project card.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#get-a-project-card](https://docs.github.com/rest/projects/cards#get-a-project-card)
  pub fn get_card(&self, card_id: impl Into<i64>) -> Request<(), (), get_card::Response> {
    let card_id = card_id.into();
    let url = format!("/projects/columns/cards/{card_id}");

    Request::<(), (), get_card::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Update an existing project card**
  ///
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#update-an-existing-project-card](https://docs.github.com/rest/projects/cards#update-an-existing-project-card)
  pub fn update_card(
    &self,
    card_id: impl Into<i64>,
  ) -> Request<update_card::Request, (), update_card::Response> {
    let card_id = card_id.into();
    let url = format!("/projects/columns/cards/{card_id}");

    Request::<update_card::Request, (), update_card::Response>::builder(&self.config)
      .patch(url)
      .build()
  }

  /// **Delete a project card**
  ///
  /// Deletes a project card
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#delete-a-project-card](https://docs.github.com/rest/projects/cards#delete-a-project-card)
  pub fn delete_card(&self, card_id: impl Into<i64>) -> NoContentRequest<(), ()> {
    let card_id = card_id.into();
    let url = format!("/projects/columns/cards/{card_id}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Move a project card**
  ///
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#move-a-project-card](https://docs.github.com/rest/projects/cards#move-a-project-card)
  pub fn move_card(
    &self,
    card_id: impl Into<i64>,
  ) -> Request<move_card::Request, (), move_card::Response> {
    let card_id = card_id.into();
    let url = format!("/projects/columns/cards/{card_id}/moves");

    Request::<move_card::Request, (), move_card::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Get a project column**
  ///
  /// Gets information about a project column.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#get-a-project-column](https://docs.github.com/rest/projects/columns#get-a-project-column)
  pub fn get_column(&self, column_id: impl Into<i64>) -> Request<(), (), get_column::Response> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}");

    Request::<(), (), get_column::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Update an existing project column**
  ///
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#update-an-existing-project-column](https://docs.github.com/rest/projects/columns#update-an-existing-project-column)
  pub fn update_column(
    &self,
    column_id: impl Into<i64>,
  ) -> Request<update_column::Request, (), update_column::Response> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}");

    Request::<update_column::Request, (), update_column::Response>::builder(&self.config)
      .patch(url)
      .build()
  }

  /// **Delete a project column**
  ///
  /// Deletes a project column.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#delete-a-project-column](https://docs.github.com/rest/projects/columns#delete-a-project-column)
  pub fn delete_column(&self, column_id: impl Into<i64>) -> NoContentRequest<(), ()> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **List project cards**
  ///
  /// Lists the project cards in a project.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#list-project-cards](https://docs.github.com/rest/projects/cards#list-project-cards)
  pub fn list_cards(
    &self,
    column_id: impl Into<i64>,
  ) -> Request<(), list_cards::Query, list_cards::Response> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}/cards");

    Request::<(), list_cards::Query, list_cards::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Create a project card**
  ///
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/cards#create-a-project-card](https://docs.github.com/rest/projects/cards#create-a-project-card)
  pub fn create_card(
    &self,
    column_id: impl Into<i64>,
  ) -> Request<create_card::Request, (), create_card::Response> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}/cards");

    Request::<create_card::Request, (), create_card::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Move a project column**
  ///
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#move-a-project-column](https://docs.github.com/rest/projects/columns#move-a-project-column)
  pub fn move_column(
    &self,
    column_id: impl Into<i64>,
  ) -> Request<move_column::Request, (), move_column::Response> {
    let column_id = column_id.into();
    let url = format!("/projects/columns/{column_id}/moves");

    Request::<move_column::Request, (), move_column::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Get a project**
  ///
  /// Gets a project by its `id`. Returns a `404 Not Found` status if projects are disabled. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#get-a-project](https://docs.github.com/rest/projects/projects#get-a-project)
  pub fn get(&self, project_id: impl Into<i64>) -> Request<(), (), get::Response> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}");

    Request::<(), (), get::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Update a project**
  ///
  /// Updates a project board's information. Returns a `404 Not Found` status if projects are disabled. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#update-a-project](https://docs.github.com/rest/projects/projects#update-a-project)
  pub fn update(
    &self,
    project_id: impl Into<i64>,
  ) -> Request<update::Request, (), update::Response> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}");

    Request::<update::Request, (), update::Response>::builder(&self.config)
      .patch(url)
      .build()
  }

  /// **Delete a project**
  ///
  /// Deletes a project board. Returns a `404 Not Found` status if projects are disabled.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#delete-a-project](https://docs.github.com/rest/projects/projects#delete-a-project)
  pub fn delete(&self, project_id: impl Into<i64>) -> NoContentRequest<(), ()> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **List project collaborators**
  ///
  /// Lists the collaborators for an organization project. For a project, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners. You must be an organization owner or a project `admin` to list collaborators.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/collaborators#list-project-collaborators](https://docs.github.com/rest/projects/collaborators#list-project-collaborators)
  pub fn list_collaborators(
    &self,
    project_id: impl Into<i64>,
  ) -> Request<(), list_collaborators::Query, list_collaborators::Response> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}/collaborators");

    Request::<(), list_collaborators::Query, list_collaborators::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Add project collaborator**
  ///
  /// Adds a collaborator to an organization project and sets their permission level. You must be an organization owner or a project `admin` to add a collaborator.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/collaborators#add-project-collaborator](https://docs.github.com/rest/projects/collaborators#add-project-collaborator)
  pub fn add_collaborator(
    &self,
    project_id: impl Into<i64>,
    username: impl Into<String>,
  ) -> NoContentRequest<add_collaborator::Request, ()> {
    let project_id = project_id.into();
    let username = username.into();
    let url = format!("/projects/{project_id}/collaborators/{username}");

    NoContentRequest::<add_collaborator::Request, ()>::builder(&self.config)
      .put(url)
      .build()
  }

  /// **Remove user as a collaborator**
  ///
  /// Removes a collaborator from an organization project. You must be an organization owner or a project `admin` to remove a collaborator.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator](https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator)
  pub fn remove_collaborator(
    &self,
    project_id: impl Into<i64>,
    username: impl Into<String>,
  ) -> NoContentRequest<(), ()> {
    let project_id = project_id.into();
    let username = username.into();
    let url = format!("/projects/{project_id}/collaborators/{username}");

    NoContentRequest::<(), ()>::builder(&self.config)
      .delete(url)
      .build()
  }

  /// **Get project permission for a user**
  ///
  /// Returns the collaborator's permission level for an organization project. Possible values for the `permission` key: `admin`, `write`, `read`, `none`. You must be an organization owner or a project `admin` to review a user's permission level.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user](https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user)
  pub fn get_permission_for_user(
    &self,
    project_id: impl Into<i64>,
    username: impl Into<String>,
  ) -> Request<(), (), get_permission_for_user::Response> {
    let project_id = project_id.into();
    let username = username.into();
    let url = format!("/projects/{project_id}/collaborators/{username}/permission");

    Request::<(), (), get_permission_for_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **List project columns**
  ///
  /// Lists the project columns in a project.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#list-project-columns](https://docs.github.com/rest/projects/columns#list-project-columns)
  pub fn list_columns(
    &self,
    project_id: impl Into<i64>,
  ) -> Request<(), list_columns::Query, list_columns::Response> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}/columns");

    Request::<(), list_columns::Query, list_columns::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Create a project column**
  ///
  /// Creates a new project column.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/columns#create-a-project-column](https://docs.github.com/rest/projects/columns#create-a-project-column)
  pub fn create_column(
    &self,
    project_id: impl Into<i64>,
  ) -> Request<create_column::Request, (), create_column::Response> {
    let project_id = project_id.into();
    let url = format!("/projects/{project_id}/columns");

    Request::<create_column::Request, (), create_column::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **List repository projects**
  ///
  /// Lists the projects in a repository. Returns a `404 Not Found` status if projects are disabled in the repository. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#list-repository-projects](https://docs.github.com/rest/projects/projects#list-repository-projects)
  pub fn list_for_repo(
    &self,
    owner: impl Into<String>,
    repo: impl Into<String>,
  ) -> Request<(), list_for_repo::Query, list_for_repo::Response> {
    let owner = owner.into();
    let repo = repo.into();
    let url = format!("/repos/{owner}/{repo}/projects");

    Request::<(), list_for_repo::Query, list_for_repo::Response>::builder(&self.config)
      .get(url)
      .build()
  }

  /// **Create a repository project**
  ///
  /// Creates a repository project board. Returns a `410 Gone` status if projects are disabled in the repository or if the repository does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#create-a-repository-project](https://docs.github.com/rest/projects/projects#create-a-repository-project)
  pub fn create_for_repo(
    &self,
    owner: impl Into<String>,
    repo: impl Into<String>,
  ) -> Request<create_for_repo::Request, (), create_for_repo::Response> {
    let owner = owner.into();
    let repo = repo.into();
    let url = format!("/repos/{owner}/{repo}/projects");

    Request::<create_for_repo::Request, (), create_for_repo::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **Create a user project**
  ///
  /// Creates a user project board. Returns a `410 Gone` status if the user does not have existing classic projects. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#create-a-user-project](https://docs.github.com/rest/projects/projects#create-a-user-project)
  pub fn create_for_authenticated_user(
    &self,
  ) -> Request<create_for_authenticated_user::Request, (), create_for_authenticated_user::Response>
  {
    let url = format!("/user/projects");

    Request::<create_for_authenticated_user::Request, (), create_for_authenticated_user::Response>::builder(&self.config)
      .post(url)
      .build()
  }

  /// **List user projects**
  ///
  /// Lists projects for a user.
  ///
  /// *Documentation*: [https://docs.github.com/rest/projects/projects#list-user-projects](https://docs.github.com/rest/projects/projects#list-user-projects)
  pub fn list_for_user(
    &self,
    username: impl Into<String>,
  ) -> Request<(), list_for_user::Query, list_for_user::Response> {
    let username = username.into();
    let url = format!("/users/{username}/projects");

    Request::<(), list_for_user::Query, list_for_user::Response>::builder(&self.config)
      .get(url)
      .build()
  }
}