LCCaptchaDigest

Objective-C

@interface LCCaptchaDigest : LCDynamicObject

/**
 A nonce used to verify captcha.
 */
@property (nonatomic, copy, readonly) NSString *nonce;

/**
 URL string of captcha image.
 */
@property (nonatomic, copy, readonly) NSString *URLString;

@end

Swift

class LCCaptchaDigest : LCDynamicObject

Undocumented

  • A nonce used to verify captcha.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull nonce;

    Swift

    var nonce: String { get }
  • URL string of captcha image.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull URLString;

    Swift

    var urlString: String { get }