DBSHARINGGetSharedLinksArg

Objective-C

@interface DBSHARINGGetSharedLinksArg : NSObject <DBSerializable, NSCopying>

Swift

class DBSHARINGGetSharedLinksArg : NSObject, DBSerializable, NSCopying

The GetSharedLinksArg struct.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • See getSharedLinks description.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *path;

    Swift

    var path: String? { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPath:(nullable NSString *)path;

    Swift

    init(path: String?)

    Parameters

    path

    See getSharedLinks description.

    Return Value

    An initialized instance.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    Declaration

    Objective-C

    - (nonnull instancetype)initDefault;

    Swift

    init(default: ())

    Return Value

    An initialized instance.