AbstractInterface | +--photos.notes.NotesInterface
| Method Summary | |
public numeric |
Add(string photo_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Add a note to a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages. |
public boolean |
Delete(string note_id)
Delete a note from a photo. |
public boolean |
Edit(string note_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Edit a note on a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages. |
| Methods inherited from AbstractInterface |
init
|
| Method Detail |
public numeric Add(string photo_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
string photo_id (Required) - The id of the photo to add a note to. numeric note_x (Required) - The left coordinate of the note. numeric note_y (Required) - The top coordinate of the note. numeric note_w (Required) - The width of the note. numeric note_h (Required) - The height of the note. string note_text (Required) - The description of the note. public boolean Delete(string note_id)
string note_id (Required) - The id of the note to delete. public boolean Edit(string note_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
string note_id (Required) - The id of the note to edit. numeric note_x (Required) - The left coordinate of the note. numeric note_y (Required) - The top coordinate of the note. numeric note_w (Required) - The width of the note. numeric note_h (Required) - The height of the note. string note_text (Required) - The description of the note.