Logo
Developer SDK
Version 1.9.632.913d652c-152450467.
Merchant Class Reference

Inherits ContentObject.

Public Member Functions

String getMerchantId ()
 
String getMerchantName ()
 
String getMerchantAddress ()
 
 Merchant (Parcel in, int parcelVersion)
 
void writeToParcel (Parcel dest, int flags)
 
 Merchant (Context context, Cursor cursor)
 

Static Public Attributes

static final String MERCHANT_NAME_COLUMN = "NAME"
 
static final String MERCHANT_ADDRESS_COLUMN = "ADDRESS"
 
static final Creator< MerchantCREATOR
 

Detailed Description

Represents a merchant.

Definition at line 20 of file Merchant.java.

Member Function Documentation

◆ getMerchantAddress()

String getMerchantAddress ( )

The address of the merchant as a single string, following appropriate regional formatting. This string may contain linebreaks and other formatting characters, and is suitable for printing on the receipt. If not set, this returns null.

Definition at line 45 of file Merchant.java.

◆ getMerchantId()

String getMerchantId ( )

A unique, logical ID for the merchant.

Definition at line 30 of file Merchant.java.

◆ getMerchantName()

String getMerchantName ( )

The name of the merchant as set by the merchant.

Definition at line 36 of file Merchant.java.

Member Data Documentation

◆ CREATOR

final Creator<Merchant> CREATOR
static
Initial value:
= new Merchant.ParcelCreator<Merchant>() {
@Override
public Merchant createFromParcel(Parcel source) {
BaseParcel createdObject = super.createFromParcel(source);
if (createdObject == null || !Merchant.class.isInstance(createdObject))
return new Merchant(source, getRecommendedParcelVersion());
else
return (Merchant) createdObject;
}
@Override
public Merchant[] newArray(int size) {
return new Merchant[size];
}
}

Definition at line 58 of file Merchant.java.


The documentation for this class was generated from the following file:

This document is the confidential property of Verifone, Inc. Any reproduction or distribution of this document, in whole or in part, or the disclosure of any of the information contained herein, without the prior written consent of Verifone, Inc. is prohibited. This document and any supplemental material supplied as part of any review must be returned to Verifone, Inc. upon request. Notice: This document may go through material revisions over time. While the Company will make every effort to keep readers updated as changes occur, care must be taken by the reader to make sure they are reading the latest version. Version numbers appear in the title page and revision history page of this document. All rights reserved. Verifone, the Verifone logo are either trademarks or registered trademarks of Verifone in the United States and/or other countries. All other trademarks or brand names are properties of their respective holders.