Skip to content

Commit 449f5b2

Browse files
author
childish-sambino
authoredJan 24, 2023
docs: use long property descriptions if available (#899)
1 parent 8da34f6 commit 449f5b2

File tree

386 files changed

+3600
-3600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

386 files changed

+3600
-3600
lines changed
 

‎lib/rest/accounts/v1/authTokenPromotion.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -110,19 +110,19 @@ export class AuthTokenPromotionInstance {
110110
}
111111

112112
/**
113-
* The SID of the Account that the secondary Auth Token was created for
113+
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that the secondary Auth Token was created for.
114114
*/
115115
accountSid: string;
116116
/**
117-
* The promoted Auth Token
117+
* The promoted Auth Token that must be used to authenticate future API requests.
118118
*/
119119
authToken: string;
120120
/**
121-
* The ISO 8601 formatted date and time in UTC when the resource was created
121+
* The date and time in UTC when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
122122
*/
123123
dateCreated: Date;
124124
/**
125-
* The ISO 8601 formatted date and time in UTC when the resource was last updated
125+
* The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
126126
*/
127127
dateUpdated: Date;
128128
/**

‎lib/rest/accounts/v1/credential/aws.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -269,23 +269,23 @@ export class AwsInstance {
269269
}
270270

271271
/**
272-
* The unique string that identifies the resource
272+
* The unique string that we created to identify the AWS resource.
273273
*/
274274
sid: string;
275275
/**
276-
* The SID of the Account that created the resource
276+
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the AWS resource.
277277
*/
278278
accountSid: string;
279279
/**
280-
* The string that you assigned to describe the resource
280+
* The string that you assigned to describe the resource.
281281
*/
282282
friendlyName: string;
283283
/**
284-
* The RFC 2822 date and time in GMT when the resource was created
284+
* The date and time in GMT when the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
285285
*/
286286
dateCreated: Date;
287287
/**
288-
* The RFC 2822 date and time in GMT when the resource was last updated
288+
* The date and time in GMT when the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
289289
*/
290290
dateUpdated: Date;
291291
/**

0 commit comments

Comments
 (0)
Please sign in to comment.