You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/billing-groups-api.ts
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -239,7 +239,7 @@ export const BillingGroupsApiAxiosParamCreator = function (
239
239
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
240
240
* @param {{ [key: string]: string; }} [dateCreated] Filter by date created.
241
241
* @param {{ [key: string]: string; }} [dateModified] Filter by date modified.
242
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
242
+
* @param {object} [sortByDateModified] Sorts items by ascending or descending dates. Use either `date_created` or `date_modfied`, not both.
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
405
405
* @param {{ [key: string]: string; }} [dateCreated] Filter by date created.
406
406
* @param {{ [key: string]: string; }} [dateModified] Filter by date modified.
407
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
407
+
* @param {object} [sortByDateModified] Sorts items by ascending or descending dates. Use either `date_created` or `date_modfied`, not both.
@@ -534,7 +534,7 @@ export class BillingGroupsApi extends BaseAPI {
534
534
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
535
535
* @param {{ [key: string]: string; }} [dateCreated] Filter by date created.
536
536
* @param {{ [key: string]: string; }} [dateModified] Filter by date modified.
537
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
537
+
* @param {object} [sortByDateModified] Sorts items by ascending or descending dates. Use either `date_created` or `date_modfied`, not both.
Copy file name to clipboardExpand all lines: api/cards-api.ts
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -283,15 +283,15 @@ export const CardsApiAxiosParamCreator = function (
283
283
* @param {number} [limit] How many results to return.
284
284
* @param {string} [before] A reference to a list entry used for paginating to the previous set of entries. This field is pre-populated in the `previous_url` field in the return response.
285
285
* @param {string} [after] A reference to a list entry used for paginating to the next set of entries. This field is pre-populated in the `next_url` field in the return response.
286
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
286
+
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
* @param {number} [limit] How many results to return.
460
460
* @param {string} [before] A reference to a list entry used for paginating to the previous set of entries. This field is pre-populated in the `previous_url` field in the return response.
461
461
* @param {string} [after] A reference to a list entry used for paginating to the next set of entries. This field is pre-populated in the `next_url` field in the return response.
462
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
462
+
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
@@ -599,7 +599,7 @@ export class CardsApi extends BaseAPI {
599
599
* @param {number} [limit] How many results to return.
600
600
* @param {string} [before] A reference to a list entry used for paginating to the previous set of entries. This field is pre-populated in the `previous_url` field in the return response.
601
601
* @param {string} [after] A reference to a list entry used for paginating to the next set of entries. This field is pre-populated in the `next_url` field in the return response.
602
-
* @param {object} [sortBy] Sorts items by ascending or descending dates. Use either `date_created` or `send_date`, not both.
602
+
* @param {Array<string>} [include] Request that the response include the total count by specifying `include[]=total_count`.
* The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors. <p> Looking for our [previous documentation](https://lob.github.io/legacy-docs/)?
* The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors. <p> Looking for our [previous documentation](https://lob.github.io/legacy-docs/)?
Copy file name to clipboardExpand all lines: models/custom-envelope-returned.ts
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,11 @@
15
15
import*asModelsfrom"./index";
16
16
17
17
/**
18
-
* A nested custom envelope object containing more information about the custom envelope used or `null` if a custom envelope was not used. Accepts an envelope ID for any customized envelope with available inventory. If no inventory is available for the specified ID, the letter will not be sent, and an error will be returned. If the letter has more than 6 sheets, it will be sent in a blank flat envelope. Custom envelopes may be created and ordered from the dashboard. This feature is exclusive to certain customers. Upgrade to the appropriate [Print & Mail Edition](https://dashboard.lob.com/#/settings/editions) to gain access.
18
+
* A nested custom envelope object containing more information about the custom envelope used or `null` if a custom envelope was not used.
19
19
* @export
20
-
* @classLetterEditableCustomEnvelope
20
+
* @classCustomEnvelopeReturned
21
21
*/
22
-
exportclassLetterEditableCustomEnvelope{
22
+
exportclassCustomEnvelopeReturned{
23
23
constructor(input?: any){
24
24
if(typeofinput?.id!=="undefined"){
25
25
this.id=input.id;
@@ -35,23 +35,23 @@ export class LetterEditableCustomEnvelope {
35
35
/**
36
36
* The unique identifier of the custom envelope used.
37
37
* @type {string}
38
-
* @memberofLetterEditableCustomEnvelope
38
+
* @memberofCustomEnvelopeReturned
39
39
*/
40
40
"id": string;
41
41
42
42
/**
43
43
* The url of the envelope asset used.
44
44
* @type {string}
45
-
* @memberofLetterEditableCustomEnvelope
45
+
* @memberofCustomEnvelopeReturned
46
46
*/
47
47
"url": string;
48
48
49
49
/**
50
50
*
51
51
* @type {string}
52
-
* @memberofLetterEditableCustomEnvelope
52
+
* @memberofCustomEnvelopeReturned
53
53
*/
54
-
"object": LetterEditableCustomEnvelopeObjectEnum;
54
+
"object": CustomEnvelopeReturnedObjectEnum;
55
55
56
56
publictoJSON(){
57
57
letout={};
@@ -68,7 +68,7 @@ export class LetterEditableCustomEnvelope {
0 commit comments