<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic What is ListFolderContinueArg? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/What-is-ListFolderContinueArg/m-p/303675#M18353</link>
    <description>&lt;P&gt;What is ListFolderContinueArg?&lt;/P&gt;&lt;P&gt;What do those comments in the code mean? Would it be in any way helpful for me to know what that is saying?&lt;/P&gt;&lt;PRE&gt;    /// The ListFolderContinueArg struct
    open class ListFolderContinueArg : CustomStringConvertible {

        /// The cursor returned by your last call to listFolder or listFolderContinue.
        public let cursor: String

        public init(cursor: String)

        /// A textual representation of this instance.
        ///
        /// Calling this property directly is discouraged. Instead, convert an
        /// instance of any type to a string by using the `String(describing:)`
        /// initializer. This initializer works with any type, and uses the custom
        /// `description` property for types that conform to
        /// `CustomStringConvertible`:
        ///
        ///     struct Point: CustomStringConvertible {
        ///         let x: Int, y: Int
        ///
        ///         var description: String {
        ///             return "(\(x), \(y))"
        ///         }
        ///     }
        ///
        ///     let p = Point(x: 21, y: 30)
        ///     let s = String(describing: p)
        ///     print(s)
        ///     // Prints "(21, 30)"
        ///
        /// The conversion of `p` to a string in the assignment to `s` uses the
        /// `Point` type's `description` property.
        open var description: String { get }
    }&lt;/PRE&gt;</description>
    <pubDate>Wed, 29 May 2019 09:09:47 GMT</pubDate>
    <dc:creator>ShinehahGnolaum</dc:creator>
    <dc:date>2019-05-29T09:09:47Z</dc:date>
    <item>
      <title>What is ListFolderContinueArg?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/What-is-ListFolderContinueArg/m-p/303675#M18353</link>
      <description>&lt;P&gt;What is ListFolderContinueArg?&lt;/P&gt;&lt;P&gt;What do those comments in the code mean? Would it be in any way helpful for me to know what that is saying?&lt;/P&gt;&lt;PRE&gt;    /// The ListFolderContinueArg struct
    open class ListFolderContinueArg : CustomStringConvertible {

        /// The cursor returned by your last call to listFolder or listFolderContinue.
        public let cursor: String

        public init(cursor: String)

        /// A textual representation of this instance.
        ///
        /// Calling this property directly is discouraged. Instead, convert an
        /// instance of any type to a string by using the `String(describing:)`
        /// initializer. This initializer works with any type, and uses the custom
        /// `description` property for types that conform to
        /// `CustomStringConvertible`:
        ///
        ///     struct Point: CustomStringConvertible {
        ///         let x: Int, y: Int
        ///
        ///         var description: String {
        ///             return "(\(x), \(y))"
        ///         }
        ///     }
        ///
        ///     let p = Point(x: 21, y: 30)
        ///     let s = String(describing: p)
        ///     print(s)
        ///     // Prints "(21, 30)"
        ///
        /// The conversion of `p` to a string in the assignment to `s` uses the
        /// `Point` type's `description` property.
        open var description: String { get }
    }&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2019 09:09:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/What-is-ListFolderContinueArg/m-p/303675#M18353</guid>
      <dc:creator>ShinehahGnolaum</dc:creator>
      <dc:date>2019-05-29T09:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: What is ListFolderContinueArg?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/What-is-ListFolderContinueArg/m-p/303694#M18355</link>
      <description>&lt;P&gt;The&amp;nbsp;ListFolderContinueArg class represents the arguments that can be passed to&amp;nbsp;&lt;A class="token" href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes18listFolderContinueFT6cursorSS_GCS_10RpcRequestCCS_5Files26ListFolderResultSerializerCS2_33ListFolderContinueErrorSerializer_" target="_blank"&gt;listFolderContinue&lt;/A&gt;. You don't need to read the code for it. Please review the documentation for&amp;nbsp;&lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes10listFolderFT4pathSS9recursiveSb16includeMediaInfoSb14includeDeletedSb31includeHasExplicitSharedMembersSb21includeMountedFoldersSb5limitGSqVs6UInt32_10sharedLinkGSqCCS_5Files10SharedLink_21includePropertyGroupsGSqOCS_14FileProperties18TemplateFilterBase__GCS_10RpcRequestCS2_26ListFolderResultSerializerCS2_25ListFolderErrorSerializer_" target="_self" rel="nofollow noopener noreferrer"&gt;listFolder&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A class="token" href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes18listFolderContinueFT6cursorSS_GCS_10RpcRequestCCS_5Files26ListFolderResultSerializerCS2_33ListFolderContinueErrorSerializer_" target="_blank"&gt;listFolderContinue&lt;/A&gt;&amp;nbsp;instead for information on how to use them.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 20:45:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/What-is-ListFolderContinueArg/m-p/303694#M18355</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-10-17T20:45:08Z</dc:date>
    </item>
  </channel>
</rss>

