square_api_client/models/gift_card_activity_adjust_increment.rs
1//! Model struct for GiftCardActivityAdjustIncrement type
2
3use serde::{Deserialize, Serialize};
4
5use super::Money;
6
7/// Represents details about an `ADJUST_INCREMENT` [gift card activity type](GiftCardActivityType).
8#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
9pub struct GiftCardActivityAdjustIncrement {
10 /// The amount added to the gift card balance. This value is a positive integer.
11 pub amount_money: Money,
12 /// The reason the gift card balance was adjusted.
13 pub reason: String,
14}