#include "components/payments/core/payment_shipping_option.h"
#include "base/values.h"
namespace payments {
namespace {
static const char kPaymentShippingOptionAmount[] = …;
static const char kPaymentShippingOptionId[] = …;
static const char kPaymentShippingOptionLabel[] = …;
static const char kPaymentShippingOptionSelected[] = …;
}
PaymentShippingOption::PaymentShippingOption() : … { … }
PaymentShippingOption::PaymentShippingOption(
const PaymentShippingOption& other) { … }
PaymentShippingOption::~PaymentShippingOption() = default;
bool PaymentShippingOption::operator==(
const PaymentShippingOption& other) const { … }
bool PaymentShippingOption::operator!=(
const PaymentShippingOption& other) const { … }
PaymentShippingOption& PaymentShippingOption::operator=(
const PaymentShippingOption& other) { … }
bool PaymentShippingOption::FromValueDict(const base::Value::Dict& dict) { … }
}