/**@class android.content.PeriodicSync
 implements android.os.Parcelable

@extends java.lang.Object

 Value type that contains information about a periodic sync.
*/
var PeriodicSync = {

/**The account to be synced. Can be null. */
account : "null",
/**The authority of the sync. Can be null. */
authority : "null",
/**Any extras that parameters that are to be passed to the sync adapter. */
extras : "null",
/**How frequently the sync should be scheduled, in seconds. Kept around for API purposes. */
period : "null",
/** How much flexibility can be taken in scheduling the sync, in seconds.
 {@hide}
*/
flexTime : "null",
/***/
CREATOR : "null",
/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},

/**
*/
equals : function(  ) {},

/**Periodic sync extra comparison function.
 {@hide}
*/
syncExtrasEquals : function(  ) {},

/**
*/
toString : function(  ) {},


};