WC_Order::set_billing_address_1()
Set billing address line 1.
Method of the class: WC_Order{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_billing_address_1( $value );
- $value(string) (required)
- Billing address line 1.
WC_Order::set_billing_address_1() WC Order::set billing address 1 code WC 9.6.1
public function set_billing_address_1( $value ) { $this->set_address_prop( 'address_1', 'billing', $value ); }