| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * Copyright 2019 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- @class ABTExperimentPayload;
- NS_ASSUME_NONNULL_BEGIN
- @interface FIRInAppMessagingCardDisplay (Private)
- - (void)setBody:(NSString *_Nullable)body;
- - (void)setLandscapeImageData:(FIRInAppMessagingImageData *_Nullable)landscapeImageData;
- - (void)setSecondaryActionButton:(FIRInAppMessagingActionButton *_Nullable)secondaryActionButton;
- - (void)setSecondaryActionURL:(NSURL *_Nullable)secondaryActionURL;
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage
- triggerType:(FIRInAppMessagingDisplayTriggerType)triggerType
- titleText:(NSString *)title
- textColor:(UIColor *)textColor
- portraitImageData:(FIRInAppMessagingImageData *)portraitImageData
- backgroundColor:(UIColor *)backgroundColor
- primaryActionButton:(FIRInAppMessagingActionButton *)primaryActionButton
- primaryActionURL:(nullable NSURL *)primaryActionURL
- appData:(nullable NSDictionary *)appData;
- @end
- @interface FIRInAppMessagingActionButton (Private)
- - (instancetype)initWithButtonText:(NSString *)btnText
- buttonTextColor:(UIColor *)textColor
- backgroundColor:(UIColor *)bkgColor;
- @end
- @interface FIRInAppMessagingImageData (Private)
- - (instancetype)initWithImageURL:(NSString *)imageURL imageData:(NSData *)imageData;
- @end
- @interface FIRInAppMessagingCampaignInfo (Private)
- - (nullable ABTExperimentPayload *)experimentPayload;
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage;
- @end
- @interface FIRInAppMessagingAction (Private)
- - (instancetype)initWithActionText:(nullable NSString *)actionText actionURL:(NSURL *)actionURL;
- @end
- @interface FIRInAppMessagingDisplayMessage (Private)
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage
- messageType:(FIRInAppMessagingDisplayMessageType)messageType
- triggerType:(FIRInAppMessagingDisplayTriggerType)triggerType
- appData:(nullable NSDictionary *)appData;
- @end
- @interface FIRInAppMessagingModalDisplay (Private)
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage
- triggerType:(FIRInAppMessagingDisplayTriggerType)triggerType
- titleText:(NSString *)title
- bodyText:(NSString *)bodyText
- textColor:(UIColor *)textColor
- backgroundColor:(UIColor *)backgroundColor
- imageData:(nullable FIRInAppMessagingImageData *)imageData
- actionButton:(nullable FIRInAppMessagingActionButton *)actionButton
- actionURL:(nullable NSURL *)actionURL
- appData:(nullable NSDictionary *)appData;
- @end
- @interface FIRInAppMessagingBannerDisplay (Private)
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage
- triggerType:(FIRInAppMessagingDisplayTriggerType)triggerType
- titleText:(NSString *)title
- bodyText:(NSString *)bodyText
- textColor:(UIColor *)textColor
- backgroundColor:(UIColor *)backgroundColor
- imageData:(nullable FIRInAppMessagingImageData *)imageData
- actionURL:(nullable NSURL *)actionURL
- appData:(nullable NSDictionary *)appData;
- @end
- @interface FIRInAppMessagingImageOnlyDisplay (Private)
- - (instancetype)initWithMessageID:(NSString *)messageID
- campaignName:(NSString *)campaignName
- experimentPayload:(nullable ABTExperimentPayload *)experimentPayload
- renderAsTestMessage:(BOOL)renderAsTestMessage
- triggerType:(FIRInAppMessagingDisplayTriggerType)triggerType
- imageData:(nullable FIRInAppMessagingImageData *)imageData
- actionURL:(nullable NSURL *)actionURL
- appData:(nullable NSDictionary *)appData;
- @end
- NS_ASSUME_NONNULL_END
|