/**
 * @example
 *     {
 *         name: "name"
 *     }
 */
export interface CreateNewLpRequest {
    /** Optional description of the loyalty program (max 256 chars). */
    description?: string;
    /** Optional unique document ID. */
    documentId?: string;
    /** Optional metadata related to the loyalty program. */
    meta?: Record<string, unknown>;
    /** Required name of the loyalty program (max 128 chars). */
    name: string;
}
