KS3HeadObjectRequest.h 622 Bytes
//
//  KSS3HeadObjectRequest.h
//  KS3SDK
//
//  Created by JackWong on 12/14/14.
//  Copyright (c) 2014 kingsoft. All rights reserved.
//

#import "KS3Request.h"

@interface KS3HeadObjectRequest : KS3Request

@property(nonatomic, strong) NSString *range;
@property(nonatomic, strong) NSString *ifModifiedSince;
@property(nonatomic, strong) NSString *ifUnmodifiedSince;
@property(nonatomic, strong) NSString *ifMatch;
@property(nonatomic, strong) NSString *ifNoneMatch;
@property(nonatomic, strong) NSString *key;

- (instancetype)initWithName:(NSString *)bucketName
                 withKeyName:(NSString *)strKey;

@end