1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// Digital Assistant Control Plane API
5//
6// API to create and maintain Oracle Digital Assistant service instances.
7//
8
9package oda
10
11import (
12	"github.com/oracle/oci-go-sdk/common"
13)
14
15// ChangeOdaInstanceCompartmentDetails Properties required to move a Digital Assistant instance from one compartment to another.
16type ChangeOdaInstanceCompartmentDetails struct {
17
18	// Identifier of the compartment into which the Digital Assistant instance should be moved.
19	CompartmentId *string `mandatory:"true" json:"compartmentId"`
20}
21
22func (m ChangeOdaInstanceCompartmentDetails) String() string {
23	return common.PointerString(m)
24}
25