1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// Object Storage Service API
5//
6// Common set of Object Storage and Archive Storage APIs for managing buckets, objects, and related resources.
7//
8
9package objectstorage
10
11import (
12	"github.com/oracle/oci-go-sdk/common"
13)
14
15// WorkRequestLogEntry The representation of WorkRequestLogEntry
16type WorkRequestLogEntry struct {
17
18	// Human-readable log message.
19	Message *string `mandatory:"false" json:"message"`
20
21	// The date and time the log message was written, as described in
22	// RFC 3339 (https://tools.ietf.org/rfc/rfc3339), section 14.29.
23	Timestamp *common.SDKTime `mandatory:"false" json:"timestamp"`
24}
25
26func (m WorkRequestLogEntry) String() string {
27	return common.PointerString(m)
28}
29