CalendarQuery
Object Hierarchy:
Description:
All the fields in the CalendarQuery structure are private and should never be accessed directly.
Namespace: GData
Package: libgdata
Content:
Properties:
- public bool future_events { get; set; }
A shortcut to request all events scheduled for the future.
- public uint max_attendees { get; set; }
Specifies the maximum number of attendees to list for an event.
- public string order_by { get; set; }
Specifies order of entries in a feed.
- public bool show_deleted { get; set; }
Whether to include deleted/cancelled events in the query feed.
- public bool single_events { get; set; }
Indicates whether recurring events should be expanded or represented as a single event.
- public int64 start_max { get; set; }
Together with start_min, creates a timespan such that only events within the timespan are returned
- public int64 start_min { get; set; }
Together with start_max, creates a timespan such that only events within the timespan are returned.
- public string timezone { get; set; }
The current timezone.
Creation methods:
- public CalendarQuery (string? q)
Creates a new CalendarQuery with its q property set to
q
. - public CalendarQuery.with_limits (string? q, int64 start_min, int64 start_max)
Creates a new CalendarQuery with its q property set to
q
, and the time limitsstart_min
andstart_max
applied (both in seconds since the UNIX epoch).
Methods:
- public bool get_future_events ()
Gets the future_events property.
- public uint get_max_attendees ()
Gets the max_attendees property.
- public unowned string get_order_by ()
Gets the order_by property.
- public bool get_single_events ()
Gets the single_events property.
- public int64 get_start_max ()
Gets the start_max property.
- public int64 get_start_min ()
Gets the start_min property.
- public unowned string get_timezone ()
Gets the timezone property.
- public void set_future_events (bool future_events)
Sets the future_events property of the CalendarQuery to
future_events
. - public void set_max_attendees (uint max_attendees)
Sets the max_attendees property of the CalendarQuery to the new value,
max_attendees
. - public void set_order_by (string? order_by)
Sets the order_by property of the CalendarQuery to the new order by string,
order_by
. - public void set_show_deleted (bool show_deleted)
Sets the show_deleted property of the CalendarQuery.
- public void set_single_events (bool single_events)
Sets the single_events property of the CalendarQuery to
single_events
. - public void set_start_max (int64 start_max)
Sets the start_max property of the CalendarQuery to the new time/date,
start_max
. - public void set_start_min (int64 start_min)
Sets the start_min property of the CalendarQuery to the new time/date,
start_min
. - public void set_timezone (string? _timezone)
Sets the timezone property of the CalendarQuery to the new timezone string,
timezone
.
Inherited Members:
All known members inherited from class GData.Query
All known members inherited from class GLib.Object