Photo
| Kind of class: | public class |
|---|---|
| Package: | com.adobe.webapis.flickr |
| Inherits from: | none |
| Classpath: | com.adobe.webapis.flickr.Photo |
| File last modified: | Monday, 03 July 2006, 15:44:36 |
Photo is a ValueObject for the Flickr API.
Summary
Constructor
Instance properties
- _id : String
- _ownerId : String
- _ownerName : String
- _secret : String
- _server : int
- _iconServer : int
- _title : String
- _description : String
- _commentCount : int
- _isPublic : Boolean
- _isFriend : Boolean
- _isFamily : Boolean
- _license : int
- _dateUploaded : Date
- _dateTaken : Date
- _dateAdded : Date
- _originalFormat : String
- _url : String
- _exifs : Array
- _rotation : int
- _ownerRealName : String
- _ownerLocation : String
- _isFavorite : Boolean
- _commentPermission : int
- _addMetaPermission : int
- _canComment : int
- _canAddMeta : int
- _notes : Array
- _tags : Array
- _urls : Array
- id : String
- The id of the photo
- ownerId : String
- The id of owner of the photo
- ownerName : String
- The name of owner of the photo
- secret : String
- The photo secret
- server : int
- The server of the photo
- iconServer : int
- The icon server of the photo
- title : String
- The title of the photo
- description : String
- The description of the photo
- commentCount : int
- The number of comments on the photo
- isPublic : Boolean
- Flag for the photo having public access
- isFriend : Boolean
- Flag for the photo having friend access
- isFamily : Boolean
- Flag for the photo having family access
- license : int
- The license of the photo, corresponding
- dateUploaded : Date
- The upload date of the photo
- dateTaken : Date
- The date the photo was taken
- dateAdded : Date
- The date the photo was added to Flickr
- originalFormat : String
- The original format of the photo
- url : String
- The url of the photo (when dealing with context)
- exifs : Array
- The exifs of the photo
- rotation : int
- The rotation of the photo
- ownerRealName : String
- The owner of the photo's real name
- ownerLocation : String
- The location of the photo's owner
- isFavorite : Boolean
- Whether or not the photo is a favorite
- commentPermission : int
- The comment permission for the photo
- addMetaPermission : int
- The add meta permission for the photo
- canComment : int
- Whether or not the user can comment
- canAddMeta : int
- Whether or not the user can add meta data
- notes : Array
- The notes for the photo - array of PhotoNote
- tags : Array
- The tags for the photo - array of PhotoTag
- urls : Array
- The urls for the photo - array of PhotoUrl
Constructor
Photo
public function Photo (
)
Construct a new Photo instance
@langversion ActionScript 3.0
@playerversion Flash 8.5
Instance properties
_addMetaPermission
private _addMetaPermission:int
(read)
_canAddMeta
private _canAddMeta:int
(read)
_canComment
private _canComment:int
(read)
_commentCount
private _commentCount:int
(read)
_commentPermission
private _commentPermission:int
(read)
_dateAdded
private _dateAdded:Date
(read)
_dateTaken
private _dateTaken:Date
(read)
_dateUploaded
private _dateUploaded:Date
(read)
_description
private _description:String
(read)
_exifs
private _exifs:Array
(read)
_iconServer
private _iconServer:int
(read)
_id
private _id:String
(read)
_isFamily
private _isFamily:Boolean
(read)
_isFavorite
private _isFavorite:Boolean
(read)
_isFriend
private _isFriend:Boolean
(read)
_isPublic
private _isPublic:Boolean
(read)
_license
private _license:int
(read)
_notes
private _notes:Array
(read)
_originalFormat
private _originalFormat:String
(read)
_ownerId
private _ownerId:String
(read)
_ownerLocation
private _ownerLocation:String
(read)
_ownerName
private _ownerName:String
(read)
_ownerRealName
private _ownerRealName:String
(read)
_rotation
private _rotation:int
(read)
_secret
private _secret:String
(read)
_server
private _server:int
(read)
_tags
private _tags:Array
(read)
_title
private _title:String
(read)
_url
private _url:String
(read)
_urls
private _urls:Array
(read)
addMetaPermission
public addMetaPermission:int
(read,write)
The add meta permission for the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
canAddMeta
public canAddMeta:int
(read,write)
Whether or not the user can add meta data
@langversion ActionScript 3.0
@playerversion Flash 8.5
canComment
public canComment:int
(read,write)
Whether or not the user can comment
@langversion ActionScript 3.0
@playerversion Flash 8.5
commentCount
public commentCount:int
(read,write)
The number of comments on the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
commentPermission
public commentPermission:int
(read,write)
The comment permission for the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
dateAdded
public dateAdded:Date
(read,write)
The date the photo was added to Flickr
@langversion ActionScript 3.0
@playerversion Flash 8.5
dateTaken
public dateTaken:Date
(read,write)
The date the photo was taken
@langversion ActionScript 3.0
@playerversion Flash 8.5
dateUploaded
public dateUploaded:Date
(read,write)
The upload date of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
description
public description:String
(read,write)
The description of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
exifs
public exifs:Array
(read,write)
The exifs of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
iconServer
public iconServer:int
(read,write)
The icon server of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
id
public id:String
(read,write)
The id of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
isFamily
public isFamily:Boolean
(read,write)
Flag for the photo having family access
@langversion ActionScript 3.0
@playerversion Flash 8.5
isFavorite
public isFavorite:Boolean
(read,write)
Whether or not the photo is a favorite
@langversion ActionScript 3.0
@playerversion Flash 8.5
isFriend
public isFriend:Boolean
(read,write)
Flag for the photo having friend access
@langversion ActionScript 3.0
@playerversion Flash 8.5
isPublic
public isPublic:Boolean
(read,write)
Flag for the photo having public access
@langversion ActionScript 3.0
@playerversion Flash 8.5
license
public license:int
(read,write)
The license of the photo, corresponding
to a constant in the License class
See also:
- @langversion ActionScript 3.0 @playerversion Flash 8.5
notes
public notes:Array
(read,write)
The notes for the photo - array of PhotoNote
@langversion ActionScript 3.0
@playerversion Flash 8.5
originalFormat
public originalFormat:String
(read,write)
The original format of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
ownerId
public ownerId:String
(read,write)
The id of owner of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
ownerLocation
public ownerLocation:String
(read,write)
The location of the photo's owner
@langversion ActionScript 3.0
@playerversion Flash 8.5
ownerName
public ownerName:String
(read,write)
The name of owner of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
ownerRealName
public ownerRealName:String
(read,write)
The owner of the photo's real name
@langversion ActionScript 3.0
@playerversion Flash 8.5
rotation
public rotation:int
(read,write)
The rotation of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
secret
public secret:String
(read,write)
The photo secret
@langversion ActionScript 3.0
@playerversion Flash 8.5
server
public server:int
(read,write)
The server of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
tags
public tags:Array
(read,write)
The tags for the photo - array of PhotoTag
@langversion ActionScript 3.0
@playerversion Flash 8.5
title
public title:String
(read,write)
The title of the photo
@langversion ActionScript 3.0
@playerversion Flash 8.5
url
public url:String
(read,write)
The url of the photo (when dealing with context)
@langversion ActionScript 3.0
@playerversion Flash 8.5
urls
public urls:Array
(read,write)
The urls for the photo - array of PhotoUrl
@langversion ActionScript 3.0
@playerversion Flash 8.5