123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /*
- * Copyright 2010-present Facebook.
- *
- * 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.
- */
- #import <Foundation/Foundation.h>
- #import "FBGraphObject.h"
- @protocol FBGraphPlace;
- @protocol FBGraphUser;
- /*!
- @protocol
- @abstract
- The `FBOpenGraphAction` protocol is the base protocol for use in posting and retrieving Open Graph actions.
- It inherits from the `FBGraphObject` protocol; you may derive custome protocols from `FBOpenGraphAction` in order
- implement typed access to your application's custom actions.
- @discussion
- Represents an Open Graph custom action, to be used directly, or from which to
- derive custom action protocols with custom properties.
- */
- @protocol FBOpenGraphAction<FBGraphObject>
- /*!
- @abstract use objectID instead
- @deprecated use objectID instead
- */
- @property (retain, nonatomic) NSString *id __attribute__ ((deprecated("use objectID instead")));
- /*!
- @property
- @abstract Typed access to the action's ID.
- @discussion Note this typically refers to the "id" field of the graph object (i.e., equivalent
- to `[self objectForKey:@"id"]`) but is differently named to avoid conflicting with Apple's
- non-public selectors.
- */
- @property (retain, nonatomic) NSString *objectID;
- /*!
- @property
- @abstract Typed access to action's start time
- */
- @property (retain, nonatomic) NSString *start_time;
- /*!
- @property
- @abstract Typed access to action's end time
- */
- @property (retain, nonatomic) NSString *end_time;
- /*!
- @property
- @abstract Typed access to action's publication time
- */
- @property (retain, nonatomic) NSString *publish_time;
- /*!
- @property
- @abstract Typed access to action's creation time
- */
- @property (retain, nonatomic) NSString *created_time;
- /*!
- @property
- @abstract Typed access to action's expiration time
- */
- @property (retain, nonatomic) NSString *expires_time;
- /*!
- @property
- @abstract Typed access to action's ref
- */
- @property (retain, nonatomic) NSString *ref;
- /*!
- @property
- @abstract Typed access to action's user message
- */
- @property (retain, nonatomic) NSString *message;
- /*!
- @property
- @abstract Typed access to action's place
- */
- @property (retain, nonatomic) id<FBGraphPlace> place;
- /*!
- @property
- @abstract Typed access to action's tags
- */
- @property (retain, nonatomic) NSArray *tags;
- /*!
- @property
- @abstract Typed access to action's image(s)
- */
- @property (retain, nonatomic) id image;
- /*!
- @property
- @abstract Typed access to action's from-user
- */
- @property (retain, nonatomic) id<FBGraphUser> from;
- /*!
- @property
- @abstract Typed access to action's likes
- */
- @property (retain, nonatomic) NSArray *likes;
- /*!
- @property
- @abstract Typed access to action's application
- */
- @property (retain, nonatomic) id<FBGraphObject> application;
- /*!
- @property
- @abstract Typed access to action's comments
- */
- @property (retain, nonatomic) NSArray *comments;
- @end
|