import type * as Square from "../index"; /** * Represents information about the application used to generate a change. */ export interface SourceApplication { /** * __Read only__ The [product](entity:Product) type of the application. * See [Product](#type-product) for possible values */ product?: Square.Product; /** * __Read only__ The Square-assigned ID of the application. This field is used only if the * [product](entity:Product) type is `EXTERNAL_API`. */ applicationId?: string | null; /** * __Read only__ The display name of the application * (for example, `"Custom Application"` or `"Square POS 4.74 for Android"`). */ name?: string | null; }