@@ -301,8 +301,11 @@ export class IterableConfig {
301301 */
302302 toDict ( ) {
303303 return {
304+ /** The name of the Iterable push integration. */
304305 pushIntegrationName : this . pushIntegrationName ,
306+ /** Whether automatic push registration is enabled. */
305307 autoPushRegistration : this . autoPushRegistration ,
308+ /** The display interval between in-app messages (in seconds). */
306309 inAppDisplayInterval : this . inAppDisplayInterval ,
307310 /**
308311 * A boolean indicating if a URL handler is present.
@@ -334,13 +337,22 @@ export class IterableConfig {
334337 authHandlerPresent : this . authHandler != undefined ,
335338 /** The log level for the SDK. */
336339 logLevel : this . logLevel ,
340+ /** The number of seconds before JWT expiration to refresh the token. */
337341 expiringAuthTokenRefreshPeriod : this . expiringAuthTokenRefreshPeriod ,
342+ /** The array of allowed URL protocols that the SDK can handle. */
338343 allowedProtocols : this . allowedProtocols ,
344+ /**
345+ * @deprecated Whether to use in-memory storage for in-app messages on Android.
346+ */
339347 androidSdkUseInMemoryStorageForInApps :
340348 this . androidSdkUseInMemoryStorageForInApps ,
349+ /** Whether to use in-memory storage for in-app messages. */
341350 useInMemoryStorageForInApps : this . useInMemoryStorageForInApps ,
351+ /** The data region determining the data center and endpoints. */
342352 dataRegion : this . dataRegion ,
353+ /** The push platform to use for push notifications. */
343354 pushPlatform : this . pushPlatform ,
355+ /** Whether encryption is enforced for PII stored on disk (Android only). */
344356 encryptionEnforced : this . encryptionEnforced ,
345357 } ;
346358 }
0 commit comments