Source: managers/sign-templates.generated.ts

  1. import BoxClient from '../box-client';
  2. import urlPath from '../util/url-path';
  3. import * as schemas from '../schemas';
  4. /**
  5. * Simple manager for interacting with all Sign Templates endpoints and actions.
  6. */
  7. class SignTemplatesManager {
  8. client: BoxClient;
  9. /**
  10. * @param {BoxClient} client The Box API Client that is responsible for making calls to the API
  11. */
  12. constructor(client: BoxClient) {
  13. this.client = client;
  14. }
  15. /**
  16. * Get Box Sign template by ID
  17. *
  18. * Fetches details of a specific Box Sign template.
  19. * @param {object} options Options for the request
  20. * @param {string} options.template_id The ID of a Box Sign template.
  21. * @param {Function} [callback] Passed the result if successful, error otherwise
  22. * @returns {Promise<schemas.SignTemplate>} A promise resolving to the result or rejecting with an error
  23. */
  24. getById(
  25. options: {
  26. /**
  27. * The ID of a Box Sign template.
  28. */
  29. readonly template_id: string;
  30. },
  31. callback?: Function
  32. ): Promise<schemas.SignTemplate> {
  33. const { template_id: templateId, ...queryParams } = options,
  34. apiPath = urlPath('sign_templates', templateId),
  35. params = {
  36. qs: queryParams,
  37. };
  38. return this.client.wrapWithDefaultHandler(this.client.get)(
  39. apiPath,
  40. params,
  41. callback
  42. );
  43. }
  44. /**
  45. * List Box Sign templates
  46. *
  47. * Gets Box Sign templates created by a user.
  48. * @param {object} [options] Options for the request
  49. * @param {string} [options.marker] Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires `usemarker` to be set to `true`.
  50. * @param {number} [options.limit] The maximum number of items to return per page.
  51. * @param {Function} [callback] Passed the result if successful, error otherwise
  52. * @returns {Promise<schemas.SignTemplates>} A promise resolving to the result or rejecting with an error
  53. */
  54. getAll(
  55. options?: {
  56. /**
  57. * Defines the position marker at which to begin returning results. This is
  58. * used when paginating using marker-based pagination.
  59. *
  60. * This requires `usemarker` to be set to `true`.
  61. */
  62. readonly marker?: string;
  63. /**
  64. * The maximum number of items to return per page.
  65. */
  66. readonly limit?: number;
  67. },
  68. callback?: Function
  69. ): Promise<schemas.SignTemplates> {
  70. const { ...queryParams } = options,
  71. apiPath = urlPath('sign_templates'),
  72. params = {
  73. qs: queryParams,
  74. };
  75. return this.client.wrapWithDefaultHandler(this.client.get)(
  76. apiPath,
  77. params,
  78. callback
  79. );
  80. }
  81. }
  82. export = SignTemplatesManager;