YMKAttributionAuthor

@interface YMKAttributionAuthor : NSObject

Undocumented

Summary

Class methods

+ (nonnull YMKAttributionAuthor *)authorWithName:(nonnull NSString *)name
                                             uri:(nullable NSString *)uri
                                           email:(nullable NSString *)email;

Properties

@property (nonatomic, readonly, nonnull) NSString *name;
Undocumented

@property (nonatomic, readonly, nullable) NSString *uri;
A reference to the author's site

@property (nonatomic, readonly, nullable) NSString *email;
Author's email

Class methods

authorWithName:uri:email:

+ (nonnull YMKAttributionAuthor *)authorWithName:(nonnull NSString *)name
                                             uri:(nullable NSString *)uri
                                           email:(nullable NSString *)email;


Properties

name

@property (nonatomic, readonly, nonnull) NSString *name;

Undocumented


uri

@property (nonatomic, readonly, nullable) NSString *uri;

A reference to the author's site.

Optional field, can be nil.


email

@property (nonatomic, readonly, nullable) NSString *email;

Author's email. Must contain at least one @ symbol.

Optional field, can be nil.