List of usage examples for android.os Parcelable interface-usage
From source file com.clover.sdk.v3.payments.GiftCardResponse.java
@SuppressWarnings("all") public final class GiftCardResponse implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable { public com.clover.sdk.v3.payments.TxType getTxType() { return genClient.cacheGet(CacheKey.txType);
From source file com.nestlabs.sdk.Camera.java
/**
* Camera represents a single Nest Camera device. It contains all information associated with a
* Camera device.
*/
@JsonPropertyOrder(alphabetic = true)
@JsonIgnoreProperties(ignoreUnknown = true)
From source file com.facebook.Profile.java
/** * This class represents a basic Facebook profile. */ public final class Profile implements Parcelable { private static final String ID_KEY = "id"; private static final String FIRST_NAME_KEY = "first_name";
From source file com.vk.sdkweb.api.model.VKApiPhoto.java
/** * Describes a photo object from VK. */ public class VKApiPhoto extends VKAttachments.VKApiAttachment implements Parcelable, Identifiable { /**
From source file com.orbar.pxdemo.Model.FiveZeroZeroImageBean.java
public class FiveZeroZeroImageBean implements Parcelable { final static String TAG = "FiveZeroZeroImageBean"; int id; int userId;
From source file br.ufrj.ppgi.jemf.mobile.bean.Victim.java
/** * @author Marcus Machado * */ public class Victim extends AbstractVictim implements Parcelable, Comparable<Victim> {
From source file com.clover.sdk.v3.payments.Refund.java
@SuppressWarnings("all") public final class Refund implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable { /** * Unique identifier
From source file com.getchute.android.photopickerplus.models.MediaModel.java
/**
* The {@link MediaModel} class encapsulates data needed for sending POST
* request to the server.
*
* The request should contain {@link OptionsModel} as well as
* {@link MediaDataModel}. As a result, {@link AssetModel} information is
From source file com.citrus.sdk.TransactionResponse.java
/** * Created by salil on 16/2/15. */ public final class TransactionResponse implements Parcelable { private Amount balanceAmount = null;
From source file com.facebook.notifications.internal.configuration.ActionsConfiguration.java
public class ActionsConfiguration implements Parcelable { public enum ActionsStyle implements Parcelable { Attached, Detached; public static final Creator<ActionsStyle> CREATOR = new EnumCreator<>(ActionsStyle.class, values());