BBAUpdateConstants.h
786 Bytes
//
// BBAUpdateConstants.h
// BBAPods
//
// Created by 樊帅飞 on 2017/11/6.
// Copyright © 2017年 Baidu. All rights reserved.
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif
#ifndef BBAUpdateConstants_h
#define BBAUpdateConstants_h
/// 必须字段,update业务标识ID
FOUNDATION_EXPORT NSString * _Nonnull const bbaUpdateIdentifierKey;
/// 必须字段,update version 必传字段,业务方需要保证版本号不早于数据的保存,因为如果先保存了版本号,此时crash数据没有保存成功,那么后续可能就会请求不到数据
FOUNDATION_EXPORT NSString * _Nonnull const bbaUpdateVersionKey;
/// 非必须字段 update data
FOUNDATION_EXPORT NSString * _Nonnull const bbaUpdateDataKey;
#endif /* BBAUpdateConstants_h */